CAMEL-9224 : Camel shell commands adapter for Spring Boot Remote shell.

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

Branch: refs/heads/master
Commit: 2588b971027886744ad05ce9e65e1bde3c7c19c7
Parents: 897bf98
Author: Claus Ibsen <davscl...@apache.org>
Authored: Sat Nov 7 09:17:34 2015 +0100
Committer: Claus Ibsen <davscl...@apache.org>
Committed: Sat Nov 7 09:17:34 2015 +0100

----------------------------------------------------------------------
 apache-camel/pom.xml                              |  4 ++++
 apache-camel/src/main/descriptors/common-bin.xml  |  1 +
 examples/camel-example-spring-boot/pom.xml        | 10 ++++++++++
 parent/pom.xml                                    |  5 +++++
 platforms/commands/commands-spring-boot/README.md |  2 +-
 platforms/commands/commands-spring-boot/pom.xml   |  2 +-
 6 files changed, 22 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/2588b971/apache-camel/pom.xml
----------------------------------------------------------------------
diff --git a/apache-camel/pom.xml b/apache-camel/pom.xml
index 11660fe..ce6df66 100644
--- a/apache-camel/pom.xml
+++ b/apache-camel/pom.xml
@@ -908,6 +908,10 @@
       <groupId>org.apache.camel.karaf</groupId>
       <artifactId>camel-karaf-commands</artifactId>
     </dependency>
+    <dependency>
+      <groupId>org.apache.camel</groupId>
+      <artifactId>camel-commands-spring-boot</artifactId>
+    </dependency>
 
     <!-- camel examples -->
     <dependency>

http://git-wip-us.apache.org/repos/asf/camel/blob/2588b971/apache-camel/src/main/descriptors/common-bin.xml
----------------------------------------------------------------------
diff --git a/apache-camel/src/main/descriptors/common-bin.xml 
b/apache-camel/src/main/descriptors/common-bin.xml
index 205ceb3..09585d4 100644
--- a/apache-camel/src/main/descriptors/common-bin.xml
+++ b/apache-camel/src/main/descriptors/common-bin.xml
@@ -237,6 +237,7 @@
         <include>org.apache.camel:camel-catalog</include>
         <include>org.apache.camel:camel-commands-core</include>
         <include>org.apache.camel:camel-commands-jolokia</include>
+        <include>org.apache.camel:camel-commands-spring-boot</include>
         <include>org.apache.camel.karaf:camel-karaf-commands</include>
         <!-- this jar is mandatory -->
         <include>org.slf4j:slf4j-api</include>

http://git-wip-us.apache.org/repos/asf/camel/blob/2588b971/examples/camel-example-spring-boot/pom.xml
----------------------------------------------------------------------
diff --git a/examples/camel-example-spring-boot/pom.xml 
b/examples/camel-example-spring-boot/pom.xml
index adcecc8..ca67d00 100755
--- a/examples/camel-example-spring-boot/pom.xml
+++ b/examples/camel-example-spring-boot/pom.xml
@@ -65,6 +65,16 @@
       <artifactId>spring-boot-starter-actuator</artifactId>
     </dependency>
 
+    <!-- remote shell -->
+    <dependency>
+      <groupId>org.springframework.boot</groupId>
+      <artifactId>spring-boot-starter-remote-shell</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.camel</groupId>
+      <artifactId>camel-commands-spring-boot</artifactId>
+    </dependency>
+
     <!-- testing -->
     <dependency>
       <groupId>org.springframework.boot</groupId>

http://git-wip-us.apache.org/repos/asf/camel/blob/2588b971/parent/pom.xml
----------------------------------------------------------------------
diff --git a/parent/pom.xml b/parent/pom.xml
index 7a3c2e4..44b47ba 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -1709,6 +1709,11 @@
         <version>${project.version}</version>
       </dependency>
       <dependency>
+        <groupId>org.apache.camel</groupId>
+        <artifactId>camel-commands-spring-boot</artifactId>
+        <version>${project.version}</version>
+      </dependency>
+      <dependency>
         <groupId>org.apache.camel.karaf</groupId>
         <artifactId>camel-karaf-commands</artifactId>
         <version>${project.version}</version>

http://git-wip-us.apache.org/repos/asf/camel/blob/2588b971/platforms/commands/commands-spring-boot/README.md
----------------------------------------------------------------------
diff --git a/platforms/commands/commands-spring-boot/README.md 
b/platforms/commands/commands-spring-boot/README.md
index d82732b..f37986a 100644
--- a/platforms/commands/commands-spring-boot/README.md
+++ b/platforms/commands/commands-spring-boot/README.md
@@ -24,7 +24,7 @@ To enable Camel Commands for the Spring Boot remote shell:
 
 <dependency>
     <groupId>org.apache.camel</groupId>
-    <artifactId>camel-commands-springboot</artifactId>
+    <artifactId>camel-commands-spring-boot</artifactId>
     <version>x.x.x</version>
     <!-- use the same version as your Camel core version -->
 </dependency>

http://git-wip-us.apache.org/repos/asf/camel/blob/2588b971/platforms/commands/commands-spring-boot/pom.xml
----------------------------------------------------------------------
diff --git a/platforms/commands/commands-spring-boot/pom.xml 
b/platforms/commands/commands-spring-boot/pom.xml
index 6904ac1..f1742d0 100755
--- a/platforms/commands/commands-spring-boot/pom.xml
+++ b/platforms/commands/commands-spring-boot/pom.xml
@@ -8,7 +8,7 @@
         <version>2.17-SNAPSHOT</version>
     </parent>
 
-    <artifactId>camel-commands-springboot</artifactId>
+    <artifactId>camel-commands-spring-boot</artifactId>
     <packaging>jar</packaging>
     <name>Camel :: Platforms :: Commands :: Spring Boot</name>
     <description>Camel Commands using Spring Boot Shell</description>

Reply via email to