You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pp...@apache.org on 2020/09/25 08:37:03 UTC

[camel-quarkus] branch master updated: Use distinct descriptions for the for the various JSON data formats

This is an automated email from the ASF dual-hosted git repository.

ppalaga pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


The following commit(s) were added to refs/heads/master by this push:
     new 9735026  Use distinct descriptions for the for the various JSON data formats
9735026 is described below

commit 97350261764ecbe8cf1473b530418217bf0d2a39
Author: Peter Palaga <pp...@redhat.com>
AuthorDate: Fri Sep 25 09:07:44 2020 +0200

    Use distinct descriptions for the for the various JSON data formats
---
 docs/modules/ROOT/pages/reference/extensions/fastjson.adoc            | 4 ++--
 docs/modules/ROOT/pages/reference/extensions/gson.adoc                | 4 ++--
 docs/modules/ROOT/pages/reference/extensions/jackson.adoc             | 4 ++--
 docs/modules/ROOT/pages/reference/extensions/johnzon.adoc             | 4 ++--
 extensions-jvm/fastjson/runtime/pom.xml                               | 2 +-
 .../runtime/src/main/resources/META-INF/quarkus-extension.yaml        | 2 +-
 extensions/gson/runtime/pom.xml                                       | 1 +
 .../gson/runtime/src/main/resources/META-INF/quarkus-extension.yaml   | 2 +-
 extensions/jackson/runtime/pom.xml                                    | 1 +
 .../runtime/src/main/resources/META-INF/quarkus-extension.yaml        | 2 +-
 extensions/johnzon/runtime/pom.xml                                    | 1 +
 .../runtime/src/main/resources/META-INF/quarkus-extension.yaml        | 2 +-
 12 files changed, 16 insertions(+), 13 deletions(-)

diff --git a/docs/modules/ROOT/pages/reference/extensions/fastjson.adoc b/docs/modules/ROOT/pages/reference/extensions/fastjson.adoc
index adad5eb..1cb601d 100644
--- a/docs/modules/ROOT/pages/reference/extensions/fastjson.adoc
+++ b/docs/modules/ROOT/pages/reference/extensions/fastjson.adoc
@@ -4,7 +4,7 @@
 :cq-artifact-id: camel-quarkus-fastjson
 :cq-native-supported: false
 :cq-status: Preview
-:cq-description: Marshal POJOs to JSON and back.
+:cq-description: Marshal POJOs to JSON and back using Fastjson
 :cq-deprecated: false
 :cq-jvm-since: 1.1.0
 :cq-native-since: n/a
@@ -12,7 +12,7 @@
 [.badges]
 [.badge-key]##JVM since##[.badge-supported]##1.1.0## [.badge-key]##Native##[.badge-unsupported]##unsupported##
 
-Marshal POJOs to JSON and back.
+Marshal POJOs to JSON and back using Fastjson
 
 == What's inside
 
diff --git a/docs/modules/ROOT/pages/reference/extensions/gson.adoc b/docs/modules/ROOT/pages/reference/extensions/gson.adoc
index 0ba77d4..13a166c 100644
--- a/docs/modules/ROOT/pages/reference/extensions/gson.adoc
+++ b/docs/modules/ROOT/pages/reference/extensions/gson.adoc
@@ -5,7 +5,7 @@
 :cq-artifact-id: camel-quarkus-gson
 :cq-native-supported: true
 :cq-status: Stable
-:cq-description: Marshal POJOs to JSON and back.
+:cq-description: Marshal POJOs to JSON and back using Gson
 :cq-deprecated: false
 :cq-jvm-since: 1.0.0
 :cq-native-since: 1.0.0
@@ -13,7 +13,7 @@
 [.badges]
 [.badge-key]##JVM since##[.badge-supported]##1.0.0## [.badge-key]##Native since##[.badge-supported]##1.0.0##
 
-Marshal POJOs to JSON and back.
+Marshal POJOs to JSON and back using Gson
 
 == What's inside
 
diff --git a/docs/modules/ROOT/pages/reference/extensions/jackson.adoc b/docs/modules/ROOT/pages/reference/extensions/jackson.adoc
index 0bc5529..e3c8331 100644
--- a/docs/modules/ROOT/pages/reference/extensions/jackson.adoc
+++ b/docs/modules/ROOT/pages/reference/extensions/jackson.adoc
@@ -5,7 +5,7 @@
 :cq-artifact-id: camel-quarkus-jackson
 :cq-native-supported: true
 :cq-status: Stable
-:cq-description: Marshal POJOs to JSON and back.
+:cq-description: Marshal POJOs to JSON and back using Jackson
 :cq-deprecated: false
 :cq-jvm-since: 0.3.0
 :cq-native-since: 0.3.0
@@ -13,7 +13,7 @@
 [.badges]
 [.badge-key]##JVM since##[.badge-supported]##0.3.0## [.badge-key]##Native since##[.badge-supported]##0.3.0##
 
-Marshal POJOs to JSON and back.
+Marshal POJOs to JSON and back using Jackson
 
 == What's inside
 
diff --git a/docs/modules/ROOT/pages/reference/extensions/johnzon.adoc b/docs/modules/ROOT/pages/reference/extensions/johnzon.adoc
index f00dcba..94ad37a 100644
--- a/docs/modules/ROOT/pages/reference/extensions/johnzon.adoc
+++ b/docs/modules/ROOT/pages/reference/extensions/johnzon.adoc
@@ -5,7 +5,7 @@
 :cq-artifact-id: camel-quarkus-johnzon
 :cq-native-supported: true
 :cq-status: Stable
-:cq-description: Marshal POJOs to JSON and back.
+:cq-description: Marshal POJOs to JSON and back using Johnzon
 :cq-deprecated: false
 :cq-jvm-since: 1.0.0
 :cq-native-since: 1.0.0
@@ -13,7 +13,7 @@
 [.badges]
 [.badge-key]##JVM since##[.badge-supported]##1.0.0## [.badge-key]##Native since##[.badge-supported]##1.0.0##
 
-Marshal POJOs to JSON and back.
+Marshal POJOs to JSON and back using Johnzon
 
 == What's inside
 
diff --git a/extensions-jvm/fastjson/runtime/pom.xml b/extensions-jvm/fastjson/runtime/pom.xml
index 3b4b5c0..b175c64 100644
--- a/extensions-jvm/fastjson/runtime/pom.xml
+++ b/extensions-jvm/fastjson/runtime/pom.xml
@@ -30,7 +30,7 @@
 
     <artifactId>camel-quarkus-fastjson</artifactId>
     <name>Camel Quarkus :: JSON Fastjson :: Runtime</name>
-    <description>Marshal POJOs to JSON and back.</description>
+    <description>Marshal POJOs to JSON and back using Fastjson</description>
 
     <properties>
         <camel.quarkus.jvmSince>1.1.0</camel.quarkus.jvmSince>
diff --git a/extensions-jvm/fastjson/runtime/src/main/resources/META-INF/quarkus-extension.yaml b/extensions-jvm/fastjson/runtime/src/main/resources/META-INF/quarkus-extension.yaml
index 99ffd1d..224b342 100644
--- a/extensions-jvm/fastjson/runtime/src/main/resources/META-INF/quarkus-extension.yaml
+++ b/extensions-jvm/fastjson/runtime/src/main/resources/META-INF/quarkus-extension.yaml
@@ -22,7 +22,7 @@
 #
 ---
 name: "Camel JSON Fastjson"
-description: "Marshal POJOs to JSON and back"
+description: "Marshal POJOs to JSON and back using Fastjson"
 metadata:
   unlisted: true
   guide: "https://camel.apache.org/camel-quarkus/latest/reference/extensions/fastjson.html"
diff --git a/extensions/gson/runtime/pom.xml b/extensions/gson/runtime/pom.xml
index dcdb591..1112c76 100644
--- a/extensions/gson/runtime/pom.xml
+++ b/extensions/gson/runtime/pom.xml
@@ -28,6 +28,7 @@
 
     <artifactId>camel-quarkus-gson</artifactId>
     <name>Camel Quarkus :: Gson :: Runtime</name>
+    <description>Marshal POJOs to JSON and back using Gson</description>
 
     <properties>
         <camel.quarkus.jvmSince>1.0.0</camel.quarkus.jvmSince>
diff --git a/extensions/gson/runtime/src/main/resources/META-INF/quarkus-extension.yaml b/extensions/gson/runtime/src/main/resources/META-INF/quarkus-extension.yaml
index f27d135..07e3f93 100644
--- a/extensions/gson/runtime/src/main/resources/META-INF/quarkus-extension.yaml
+++ b/extensions/gson/runtime/src/main/resources/META-INF/quarkus-extension.yaml
@@ -22,7 +22,7 @@
 #
 ---
 name: "Camel Gson"
-description: "Marshal POJOs to JSON and back"
+description: "Marshal POJOs to JSON and back using Gson"
 metadata:
   guide: "https://camel.apache.org/camel-quarkus/latest/reference/extensions/gson.html"
   categories:
diff --git a/extensions/jackson/runtime/pom.xml b/extensions/jackson/runtime/pom.xml
index 7569d2d..61deeaf 100644
--- a/extensions/jackson/runtime/pom.xml
+++ b/extensions/jackson/runtime/pom.xml
@@ -27,6 +27,7 @@
 
     <artifactId>camel-quarkus-jackson</artifactId>
     <name>Camel Quarkus :: Jackson :: Runtime</name>
+    <description>Marshal POJOs to JSON and back using Jackson</description>
 
     <properties>
         <camel.quarkus.jvmSince>0.3.0</camel.quarkus.jvmSince>
diff --git a/extensions/jackson/runtime/src/main/resources/META-INF/quarkus-extension.yaml b/extensions/jackson/runtime/src/main/resources/META-INF/quarkus-extension.yaml
index a923beb..c0efd4d 100644
--- a/extensions/jackson/runtime/src/main/resources/META-INF/quarkus-extension.yaml
+++ b/extensions/jackson/runtime/src/main/resources/META-INF/quarkus-extension.yaml
@@ -22,7 +22,7 @@
 #
 ---
 name: "Camel Jackson"
-description: "Marshal POJOs to JSON and back"
+description: "Marshal POJOs to JSON and back using Jackson"
 metadata:
   guide: "https://camel.apache.org/camel-quarkus/latest/reference/extensions/jackson.html"
   categories:
diff --git a/extensions/johnzon/runtime/pom.xml b/extensions/johnzon/runtime/pom.xml
index 90ce91f..3ed8319 100644
--- a/extensions/johnzon/runtime/pom.xml
+++ b/extensions/johnzon/runtime/pom.xml
@@ -28,6 +28,7 @@
 
     <artifactId>camel-quarkus-johnzon</artifactId>
     <name>Camel Quarkus :: Johnzon :: Runtime</name>
+    <description>Marshal POJOs to JSON and back using Johnzon</description>
 
     <properties>
         <camel.quarkus.jvmSince>1.0.0</camel.quarkus.jvmSince>
diff --git a/extensions/johnzon/runtime/src/main/resources/META-INF/quarkus-extension.yaml b/extensions/johnzon/runtime/src/main/resources/META-INF/quarkus-extension.yaml
index 8cd00cc..1e88f2b 100644
--- a/extensions/johnzon/runtime/src/main/resources/META-INF/quarkus-extension.yaml
+++ b/extensions/johnzon/runtime/src/main/resources/META-INF/quarkus-extension.yaml
@@ -22,7 +22,7 @@
 #
 ---
 name: "Camel Johnzon"
-description: "Marshal POJOs to JSON and back"
+description: "Marshal POJOs to JSON and back using Johnzon"
 metadata:
   guide: "https://camel.apache.org/camel-quarkus/latest/reference/extensions/johnzon.html"
   categories: