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 2019/03/27 15:52:25 UTC

[camel-k-runtime] branch master updated: Need to exclude wildcard groovy here, possible for groovy-all or other groovy artifacts to bleed in and conflict with the camel-k-runtime groovy version

This is an automated email from the ASF dual-hosted git repository.

lburgazzoli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git


The following commit(s) were added to refs/heads/master by this push:
     new 45d4703  Need to exclude wildcard groovy here, possible for groovy-all or other groovy artifacts to bleed in and conflict with the camel-k-runtime groovy version
45d4703 is described below

commit 45d4703dba0fd584bddde33757ce6d4bfc8abdd9
Author: Tom Cunningham <tc...@redhat.com>
AuthorDate: Wed Mar 27 08:53:06 2019 -0400

    Need to exclude wildcard groovy here, possible for groovy-all or other groovy artifacts to bleed in and conflict with the camel-k-runtime groovy version
---
 camel-k-runtime-groovy/pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/camel-k-runtime-groovy/pom.xml b/camel-k-runtime-groovy/pom.xml
index eede3f1..7b87c1e 100644
--- a/camel-k-runtime-groovy/pom.xml
+++ b/camel-k-runtime-groovy/pom.xml
@@ -45,7 +45,7 @@
             <exclusions>
                 <exclusion>
                     <groupId>org.codehaus.groovy</groupId>
-                    <artifactId>groovy</artifactId>
+                    <artifactId>*</artifactId>
                 </exclusion>
             </exclusions>
             <scope>provided</scope>
@@ -78,7 +78,7 @@
             <exclusions>
                 <exclusion>
                     <groupId>org.codehaus.groovy</groupId>
-                    <artifactId>groovy-all</artifactId>
+                    <artifactId>*</artifactId>
                 </exclusion>
             </exclusions>
         </dependency>