This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit 38d1930f2f80bbc2a45eaee04ad6c187f7198120 Author: Andrea Cosentino <[email protected]> AuthorDate: Thu Jan 12 09:48:51 2023 +0100 CAMEL-18879 - Remove Camel-Zipkin after deprecation - refs Signed-off-by: Andrea Cosentino <[email protected]> --- .../resources/org/apache/camel/catalog/others/zipkin.json | 15 --------------- .../org/apache/camel/maven/packaging/MvelHelperTest.java | 5 +---- 2 files changed, 1 insertion(+), 19 deletions(-) diff --git a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/zipkin.json b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/zipkin.json deleted file mode 100644 index cad3f851de6..00000000000 --- a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/zipkin.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "other": { - "kind": "other", - "name": "zipkin", - "title": "Zipkin", - "description": "Distributed message tracing using Zipkin", - "deprecated": true, - "firstVersion": "2.18.0", - "label": "monitoring,microservice", - "supportLevel": "Stable", - "groupId": "org.apache.camel", - "artifactId": "camel-zipkin", - "version": "4.0.0-SNAPSHOT" - } -} diff --git a/tooling/maven/camel-package-maven-plugin/src/test/java/org/apache/camel/maven/packaging/MvelHelperTest.java b/tooling/maven/camel-package-maven-plugin/src/test/java/org/apache/camel/maven/packaging/MvelHelperTest.java index 33a6a9fb3fb..1941ecc10bd 100644 --- a/tooling/maven/camel-package-maven-plugin/src/test/java/org/apache/camel/maven/packaging/MvelHelperTest.java +++ b/tooling/maven/camel-package-maven-plugin/src/test/java/org/apache/camel/maven/packaging/MvelHelperTest.java @@ -58,9 +58,6 @@ public class MvelHelperTest { arguments("https://example.com", "\\https://example.com"), arguments("ftp://example.com", "\\ftp://example.com"), arguments("ftp", "ftp"), - arguments("http", "http"), - arguments( - "Sets the POST URL for zipkin's <a href=\"http://zipkin.io/zipkin-api/#/\">v2 api</a>, usually \"http://zipkinhost:9411/api/v2/spans\"", - "Sets the POST URL for zipkin's <a href=\"http://zipkin.io/zipkin-api/#/\">v2 api</a>, usually \"\\http://zipkinhost:9411/api/v2/spans\"")); + arguments("http", "http"); } }
