You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@karaf.apache.org by cs...@apache.org on 2012/09/25 14:42:21 UTC

svn commit: r1389837 - /karaf/trunk/tooling/exam/regression/pom.xml

Author: cschneider
Date: Tue Sep 25 12:42:21 2012
New Revision: 1389837

URL: http://svn.apache.org/viewvc?rev=1389837&view=rev
Log:
KARAF-1861 Excluding the client from the karaf dependency to avoid duplicate slf4j impls

Modified:
    karaf/trunk/tooling/exam/regression/pom.xml

Modified: karaf/trunk/tooling/exam/regression/pom.xml
URL: http://svn.apache.org/viewvc/karaf/trunk/tooling/exam/regression/pom.xml?rev=1389837&r1=1389836&r2=1389837&view=diff
==============================================================================
--- karaf/trunk/tooling/exam/regression/pom.xml (original)
+++ karaf/trunk/tooling/exam/regression/pom.xml Tue Sep 25 12:42:21 2012
@@ -52,6 +52,12 @@
             <type>zip</type>
             <scope>test</scope>
             <version>${project.version}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.apache.karaf</groupId>
+                    <artifactId>org.apache.karaf.client</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
         <dependency>
             <groupId>org.apache.karaf</groupId>
@@ -59,6 +65,12 @@
             <type>tar.gz</type>
             <scope>test</scope>
             <version>${project.version}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.apache.karaf</groupId>
+                    <artifactId>org.apache.karaf.client</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
         <dependency>
             <groupId>org.apache.karaf.features</groupId>