You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by lb...@apache.org on 2017/04/05 05:06:10 UTC

[3/3] camel git commit: Add category to spring-boot and spring-cloud servicecall examples

Add category to spring-boot and spring-cloud servicecall examples


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/33952630
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/33952630
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/33952630

Branch: refs/heads/master
Commit: 339526303a5c50b3edd13b5fa43d04004b2d923f
Parents: e706379
Author: lburgazzoli <lb...@gmail.com>
Authored: Wed Apr 5 07:05:28 2017 +0200
Committer: lburgazzoli <lb...@gmail.com>
Committed: Wed Apr 5 07:05:28 2017 +0200

----------------------------------------------------------------------
 examples/README.adoc                                         | 8 ++++----
 .../camel-example-spring-boot-servicecall/consumer/pom.xml   | 2 +-
 examples/camel-example-spring-boot-servicecall/pom.xml       | 4 ++++
 .../camel-example-spring-boot-servicecall/services/pom.xml   | 2 +-
 .../camel-example-spring-cloud-servicecall/consumer/pom.xml  | 2 +-
 examples/camel-example-spring-cloud-servicecall/pom.xml      | 4 ++++
 .../camel-example-spring-cloud-servicecall/service/pom.xml   | 2 +-
 7 files changed, 16 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/33952630/examples/README.adoc
----------------------------------------------------------------------
diff --git a/examples/README.adoc b/examples/README.adoc
index 4f1825c..033e8b8 100644
--- a/examples/README.adoc
+++ b/examples/README.adoc
@@ -17,10 +17,6 @@ Number of Examples: 92 (10 deprecated)
 |=======================================================================
 | Example | Category | Description
 
-| link:camel-example-spring-boot-servicecall/README.adoc[Spring Boot Servicecall] (camel-example-spring-boot-servicecall) |  | An example showing how to work with Camel ServiceCall EIP and Spring Boot
-
-| link:camel-example-spring-cloud-servicecall/README.adoc[Spring Cloud Servicecall] (camel-example-spring-cloud-servicecall) |  | An example showing how to work with Camel ServiceCall EIP and Spring Cloud
-
 | link:camel-example-cdi/README.md[CDI] (camel-example-cdi) | Beginner | An example showing how to work with Camel and CDI for dependency injection
 
 | link:camel-example-cdi-properties/README.md[CDI Properties] (camel-example-cdi-properties) | Beginner | DeltaSpike configuration properties CDI example
@@ -68,6 +64,10 @@ Number of Examples: 92 (10 deprecated)
 
 | link:camel-example-hazelcast-kubernetes/ReadMe.md[Hazelcast Kubernetes] (camel-example-hazelcast-kubernetes) | Cloud | An example with Camel and Hazelcast running on Kubernetes
 
+| link:camel-example-spring-boot-servicecall/README.adoc[Spring Boot Servicecall] (camel-example-spring-boot-servicecall) | Cloud | An example showing how to work with Camel ServiceCall EIP and Spring Boot
+
+| link:camel-example-spring-cloud-servicecall/README.adoc[Spring Cloud Servicecall] (camel-example-spring-cloud-servicecall) | Cloud | An example showing how to work with Camel ServiceCall EIP and Spring Cloud
+
 | link:camel-example-cdi-cassandraql/README.md[CDI Cassandra] (camel-example-cdi-cassandraql) | Database | Cassandraql CDI example
 
 | link:camel-example-jdbc/README.md[JDBC] (camel-example-jdbc) | Database | An example for showing Camel using JDBC component

http://git-wip-us.apache.org/repos/asf/camel/blob/33952630/examples/camel-example-spring-boot-servicecall/consumer/pom.xml
----------------------------------------------------------------------
diff --git a/examples/camel-example-spring-boot-servicecall/consumer/pom.xml b/examples/camel-example-spring-boot-servicecall/consumer/pom.xml
index db8ab42..7e9cdb1 100644
--- a/examples/camel-example-spring-boot-servicecall/consumer/pom.xml
+++ b/examples/camel-example-spring-boot-servicecall/consumer/pom.xml
@@ -32,7 +32,7 @@
   <description>An example showing how to work with Camel ServiceCall EIP and Spring Boot (Consumer)</description>
 
   <properties>
-    <category>Beginner</category>
+    <category>Cloud</category>
 
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

http://git-wip-us.apache.org/repos/asf/camel/blob/33952630/examples/camel-example-spring-boot-servicecall/pom.xml
----------------------------------------------------------------------
diff --git a/examples/camel-example-spring-boot-servicecall/pom.xml b/examples/camel-example-spring-boot-servicecall/pom.xml
index 9546468..fb8891b 100644
--- a/examples/camel-example-spring-boot-servicecall/pom.xml
+++ b/examples/camel-example-spring-boot-servicecall/pom.xml
@@ -32,6 +32,10 @@
   <description>An example showing how to work with Camel ServiceCall EIP and Spring Boot</description>
   <packaging>pom</packaging>
 
+  <properties>
+    <category>Cloud</category>
+  </properties>
+
   <modules>
     <module>consumer</module>
     <module>services</module>

http://git-wip-us.apache.org/repos/asf/camel/blob/33952630/examples/camel-example-spring-boot-servicecall/services/pom.xml
----------------------------------------------------------------------
diff --git a/examples/camel-example-spring-boot-servicecall/services/pom.xml b/examples/camel-example-spring-boot-servicecall/services/pom.xml
index 4299bd3..4265c98 100644
--- a/examples/camel-example-spring-boot-servicecall/services/pom.xml
+++ b/examples/camel-example-spring-boot-servicecall/services/pom.xml
@@ -32,7 +32,7 @@
   <description>An example showing how to work with Camel ServiceCall EIP and Spring Boot (Services)</description>
 
   <properties>
-    <category>Beginner</category>
+    <category>Cloud</category>
 
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

http://git-wip-us.apache.org/repos/asf/camel/blob/33952630/examples/camel-example-spring-cloud-servicecall/consumer/pom.xml
----------------------------------------------------------------------
diff --git a/examples/camel-example-spring-cloud-servicecall/consumer/pom.xml b/examples/camel-example-spring-cloud-servicecall/consumer/pom.xml
index a2fee1f..46f1390 100644
--- a/examples/camel-example-spring-cloud-servicecall/consumer/pom.xml
+++ b/examples/camel-example-spring-cloud-servicecall/consumer/pom.xml
@@ -32,7 +32,7 @@
   <description>An example showing how to work with Camel ServiceCall EIP and Spring Cloud (Consumer)</description>
 
   <properties>
-    <category>Beginner</category>
+    <category>Cloud</category>
 
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

http://git-wip-us.apache.org/repos/asf/camel/blob/33952630/examples/camel-example-spring-cloud-servicecall/pom.xml
----------------------------------------------------------------------
diff --git a/examples/camel-example-spring-cloud-servicecall/pom.xml b/examples/camel-example-spring-cloud-servicecall/pom.xml
index 10c3517..d911316 100644
--- a/examples/camel-example-spring-cloud-servicecall/pom.xml
+++ b/examples/camel-example-spring-cloud-servicecall/pom.xml
@@ -32,6 +32,10 @@
   <description>An example showing how to work with Camel ServiceCall EIP and Spring Cloud</description>
   <packaging>pom</packaging>
 
+    <properties>
+    <category>Cloud</category>
+  </properties>
+
   <modules>
     <module>consumer</module>
     <module>service</module>

http://git-wip-us.apache.org/repos/asf/camel/blob/33952630/examples/camel-example-spring-cloud-servicecall/service/pom.xml
----------------------------------------------------------------------
diff --git a/examples/camel-example-spring-cloud-servicecall/service/pom.xml b/examples/camel-example-spring-cloud-servicecall/service/pom.xml
index ef8e7eb..d1e9ff8 100644
--- a/examples/camel-example-spring-cloud-servicecall/service/pom.xml
+++ b/examples/camel-example-spring-cloud-servicecall/service/pom.xml
@@ -32,7 +32,7 @@
   <description>An example showing how to work with Camel ServiceCall EIP and Spring Cloud (Service)</description>
 
   <properties>
-    <category>Beginner</category>
+    <category>Cloud</category>
 
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>