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

[5/6] camel git commit: CAMEL-10930: Move groovy dsl into camel-groovy-dsl

CAMEL-10930: Move groovy dsl into camel-groovy-dsl


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

Branch: refs/heads/master
Commit: 65d41c16ccf828c65d0233c99393b0bfcc583dc4
Parents: 91ff7db
Author: Claus Ibsen <da...@apache.org>
Authored: Fri Mar 3 10:03:48 2017 +0100
Committer: Claus Ibsen <da...@apache.org>
Committed: Fri Mar 3 10:03:48 2017 +0100

----------------------------------------------------------------------
 apache-camel/pom.xml                                            | 4 ++++
 apache-camel/src/main/descriptors/common-bin.xml                | 1 +
 .../src/main/resources/archetype-resources/pom.xml              | 4 ++--
 examples/camel-example-groovy/pom.xml                           | 2 +-
 parent/pom.xml                                                  | 5 +++++
 5 files changed, 13 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/65d41c16/apache-camel/pom.xml
----------------------------------------------------------------------
diff --git a/apache-camel/pom.xml b/apache-camel/pom.xml
index df1488c..a2300d3 100644
--- a/apache-camel/pom.xml
+++ b/apache-camel/pom.xml
@@ -347,6 +347,10 @@
     </dependency>
     <dependency>
       <groupId>org.apache.camel</groupId>
+      <artifactId>camel-groovy-dsl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.camel</groupId>
       <artifactId>camel-guava-eventbus</artifactId>
     </dependency>
     <dependency>

http://git-wip-us.apache.org/repos/asf/camel/blob/65d41c16/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 e7f1b2b..c5187fd 100644
--- a/apache-camel/src/main/descriptors/common-bin.xml
+++ b/apache-camel/src/main/descriptors/common-bin.xml
@@ -97,6 +97,7 @@
         <include>org.apache.camel:camel-google-pubsub</include>
         <include>org.apache.camel:camel-gora</include>
         <include>org.apache.camel:camel-groovy</include>
+        <include>org.apache.camel:camel-groovy-dsl</include>
         <include>org.apache.camel:camel-guava-eventbus</include>
         <include>org.apache.camel:camel-guice</include>
         <include>org.apache.camel:camel-gson</include>

http://git-wip-us.apache.org/repos/asf/camel/blob/65d41c16/archetypes/camel-archetype-groovy/src/main/resources/archetype-resources/pom.xml
----------------------------------------------------------------------
diff --git a/archetypes/camel-archetype-groovy/src/main/resources/archetype-resources/pom.xml b/archetypes/camel-archetype-groovy/src/main/resources/archetype-resources/pom.xml
index 2327fe9..d1994c0 100644
--- a/archetypes/camel-archetype-groovy/src/main/resources/archetype-resources/pom.xml
+++ b/archetypes/camel-archetype-groovy/src/main/resources/archetype-resources/pom.xml
@@ -25,7 +25,7 @@
   <packaging>jar</packaging>
   <version>${version}</version>
 
-  <name>A Groovy Camel Route</name>
+  <name>A Groovy DSL Camel Route</name>
 
   <properties>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -52,7 +52,7 @@
     </dependency>
     <dependency>
       <groupId>org.apache.camel</groupId>
-      <artifactId>camel-groovy</artifactId>
+      <artifactId>camel-groovy-dsl</artifactId>
     </dependency>
 
     <!-- used for jetty -->

http://git-wip-us.apache.org/repos/asf/camel/blob/65d41c16/examples/camel-example-groovy/pom.xml
----------------------------------------------------------------------
diff --git a/examples/camel-example-groovy/pom.xml b/examples/camel-example-groovy/pom.xml
index 839996a..88139c2 100644
--- a/examples/camel-example-groovy/pom.xml
+++ b/examples/camel-example-groovy/pom.xml
@@ -42,7 +42,7 @@
     </dependency>
     <dependency>
       <groupId>org.apache.camel</groupId>
-      <artifactId>camel-groovy</artifactId>
+      <artifactId>camel-groovy-dsl</artifactId>
     </dependency>
 
     <!-- used for jetty -->

http://git-wip-us.apache.org/repos/asf/camel/blob/65d41c16/parent/pom.xml
----------------------------------------------------------------------
diff --git a/parent/pom.xml b/parent/pom.xml
index 869193b..4a1883e 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -1142,6 +1142,11 @@
       </dependency>
       <dependency>
         <groupId>org.apache.camel</groupId>
+        <artifactId>camel-groovy-dsl</artifactId>
+        <version>${project.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.camel</groupId>
         <artifactId>camel-guava-eventbus</artifactId>
         <version>${project.version}</version>
       </dependency>