Repository: camel
Updated Branches:
  refs/heads/master 17f064280 -> 4593fd4bb


Categorize some examples a bit better as they are not beginner


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

Branch: refs/heads/master
Commit: 4593fd4bbb2b7285d6a29521aac79478aa0ba685
Parents: 17f0642
Author: Claus Ibsen <[email protected]>
Authored: Thu Sep 14 16:02:50 2017 +0200
Committer: Claus Ibsen <[email protected]>
Committed: Thu Sep 14 16:02:50 2017 +0200

----------------------------------------------------------------------
 examples/README.adoc                                     |  8 ++++----
 .../pom.xml                                              | 11 +++++------
 .../pom.xml                                              |  2 +-
 3 files changed, 10 insertions(+), 11 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/4593fd4b/examples/README.adoc
----------------------------------------------------------------------
diff --git a/examples/README.adoc b/examples/README.adoc
index e6ba906..c3891a1 100644
--- a/examples/README.adoc
+++ b/examples/README.adoc
@@ -44,14 +44,10 @@ Number of Examples: 98 (8 deprecated)
 
 | link:camel-example-spring-boot/readme.adoc[Spring Boot] 
(camel-example-spring-boot) | Beginner | An example showing how to work with 
Camel and Spring Boot
 
-| link:camel-example-spring-boot-clustered-route-controller/readme.adoc[Spring 
Boot Clustered Route Controller] 
(camel-example-spring-boot-clustered-route-controller) | Beginner | An example 
showing how to work with Camel's Clustered Route Controller and Spring Boot
-
 | link:camel-example-spring-boot-live-reload/readme.adoc[Spring Boot Live 
Reload] (camel-example-spring-boot-live-reload) | Beginner | An example showing 
how to use the live reload feature of Spring Boot with Camel
 
 | link:camel-example-spring-boot-pojo/README.adoc[Spring Boot Pojo] 
(camel-example-spring-boot-pojo) | Beginner | An example showing how to work 
with Camel POJO routing with Spring Boot
 
-| 
link:camel-example-spring-boot-supervising-route-controller/readme.adoc[Spring 
Boot Supervising Route Controller] 
(camel-example-spring-boot-supervising-route-controller) | Beginner | An 
example showing how to work with Camel's Supervising Route Controller and 
Spring Boot
-
 | link:camel-example-spring-javaconfig/README.md[Spring Java Config] 
(camel-example-spring-javaconfig) | Beginner | An example showing how to work 
with Camel and Spring Java Config
 
 | link:camel-example-spring-xquery/README.md[Spring XQuery] 
(camel-example-spring-xquery) | Beginner | An example using Spring XML to 
transform a message using XQuery
@@ -80,6 +76,8 @@ Number of Examples: 98 (8 deprecated)
 
 | 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-spring-boot-clustered-route-controller/readme.adoc[Spring 
Boot Clustered Route Controller] 
(camel-example-spring-boot-clustered-route-controller) | Clustering | An 
example showing how to work with Camel's Clustered Route Controller and Spring 
Boot
+
 | 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
@@ -131,6 +129,8 @@ Number of Examples: 98 (8 deprecated)
 
 | link:camel-example-spring-boot-metrics/README.md[Spring Boot Metrics] 
(camel-example-spring-boot-metrics) | Management and Monitoring | An example 
showing how to work with Camel and Spring Boot and report metrics to Graphite
 
+| 
link:camel-example-spring-boot-supervising-route-controller/readme.adoc[Spring 
Boot Supervising Route Controller] 
(camel-example-spring-boot-supervising-route-controller) | Management and 
Monitoring | An example showing how to work with Camel's Supervising Route 
Controller and Spring Boot
+
 | link:camel-example-tracer/README.md[Tracer] (camel-example-tracer) | 
Management and Monitoring | *deprecated* An example showing how to persist 
Camel trace event messages using JPA
 
 | link:camel-example-zipkin/README.md[Zipkin] (camel-example-zipkin) | 
Management and Monitoring | An example showing how to trace incoming and 
outgoing messages from Camel with Zipkin

http://git-wip-us.apache.org/repos/asf/camel/blob/4593fd4b/examples/camel-example-spring-boot-clustered-route-controller/pom.xml
----------------------------------------------------------------------
diff --git 
a/examples/camel-example-spring-boot-clustered-route-controller/pom.xml 
b/examples/camel-example-spring-boot-clustered-route-controller/pom.xml
index c27d554..0e293be 100644
--- a/examples/camel-example-spring-boot-clustered-route-controller/pom.xml
+++ b/examples/camel-example-spring-boot-clustered-route-controller/pom.xml
@@ -33,19 +33,18 @@
   <description>An example showing how to work with Camel's Clustered Route 
Controller and Spring Boot</description>
   <packaging>pom</packaging>
 
-  <modules>
-    <module>cluster-bootstrap</module>
-    <module>cluster-node</module>
-  </modules>
   <properties>
-    <category>Beginner</category>
+    <category>Clustering</category>
 
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
     <spring.boot-version>${spring-boot-version}</spring.boot-version>
   </properties>
 
-
+  <modules>
+    <module>cluster-bootstrap</module>
+    <module>cluster-node</module>
+  </modules>
 
   <profiles>
     <profile>

http://git-wip-us.apache.org/repos/asf/camel/blob/4593fd4b/examples/camel-example-spring-boot-supervising-route-controller/pom.xml
----------------------------------------------------------------------
diff --git 
a/examples/camel-example-spring-boot-supervising-route-controller/pom.xml 
b/examples/camel-example-spring-boot-supervising-route-controller/pom.xml
index 6b231fe..513dbad 100644
--- a/examples/camel-example-spring-boot-supervising-route-controller/pom.xml
+++ b/examples/camel-example-spring-boot-supervising-route-controller/pom.xml
@@ -33,7 +33,7 @@
   <description>An example showing how to work with Camel's Supervising Route 
Controller and Spring Boot</description>
 
   <properties>
-    <category>Beginner</category>
+    <category>Management and Monitoring</category>
 
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

Reply via email to