You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2023/01/12 09:26:35 UTC

[camel] 02/05: CAMEL-18879 - Remove Camel-Zipkin after deprecation - refs

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 <an...@gmail.com>
AuthorDate: Thu Jan 12 09:48:51 2023 +0100

    CAMEL-18879 - Remove Camel-Zipkin after deprecation - refs
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../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");
     }
 }