You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ja...@apache.org on 2014/02/24 18:06:45 UTC

git commit: Exclude groovy-eclipse-batch dependency from groovy-eclipse-compiler or it will resolve SNAPSHOTs

Repository: camel
Updated Branches:
  refs/heads/master e42041684 -> 44fb0b47c


Exclude groovy-eclipse-batch dependency from groovy-eclipse-compiler or it will resolve SNAPSHOTs


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

Branch: refs/heads/master
Commit: 44fb0b47c02e1dcaf38d97af869323ffa30e6a6a
Parents: e420416
Author: Jonathan Anstey <ja...@gmail.com>
Authored: Mon Feb 24 13:33:08 2014 -0330
Committer: Jonathan Anstey <ja...@gmail.com>
Committed: Mon Feb 24 13:36:33 2014 -0330

----------------------------------------------------------------------
 components/camel-groovy/pom.xml | 30 ++++++++++++++++++------------
 1 file changed, 18 insertions(+), 12 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/44fb0b47/components/camel-groovy/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-groovy/pom.xml b/components/camel-groovy/pom.xml
index 66355dc..f821ca4 100644
--- a/components/camel-groovy/pom.xml
+++ b/components/camel-groovy/pom.xml
@@ -74,18 +74,24 @@
 	      <!-- set verbose to be true if you want lots of uninteresting messages -->
 	      <!-- <verbose>true</verbose> -->
 	    </configuration>
-	    <dependencies>
-	      <dependency>
-	        <groupId>org.codehaus.groovy</groupId>
-	        <artifactId>groovy-eclipse-compiler</artifactId>
-	        <version>2.7.0-01</version>
-	      </dependency>
-        <dependency>
-          <groupId>org.codehaus.groovy</groupId>
-          <artifactId>groovy-eclipse-batch</artifactId>
-          <version>2.1.8-01</version>
-        </dependency>
-	    </dependencies>
+            <dependencies>
+              <dependency>
+                <groupId>org.codehaus.groovy</groupId>
+                <artifactId>groovy-eclipse-compiler</artifactId>
+                <version>2.7.0-01</version>
+                <exclusions>
+                  <exclusion>
+                    <groupId>org.codehaus.groovy</groupId>
+                    <artifactId>groovy-eclipse-batch</artifactId>
+                  </exclusion>
+                </exclusions>
+              </dependency>
+              <dependency>
+                <groupId>org.codehaus.groovy</groupId>
+                <artifactId>groovy-eclipse-batch</artifactId>
+                <version>2.1.8-01</version>
+              </dependency>
+            </dependencies>
 	  </plugin>
       <plugin>
           <groupId>org.apache.maven.plugins</groupId>