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 2012/04/27 13:56:11 UTC

svn commit: r1331370 - /camel/trunk/components/camel-test-blueprint/pom.xml

Author: davsclaus
Date: Fri Apr 27 11:56:11 2012
New Revision: 1331370

URL: http://svn.apache.org/viewvc?rev=1331370&view=rev
Log:
CAMEL-5230: Config admin dep at runtime dep so can be used with mvn camel:run plugin

Modified:
    camel/trunk/components/camel-test-blueprint/pom.xml

Modified: camel/trunk/components/camel-test-blueprint/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-test-blueprint/pom.xml?rev=1331370&r1=1331369&r2=1331370&view=diff
==============================================================================
--- camel/trunk/components/camel-test-blueprint/pom.xml (original)
+++ camel/trunk/components/camel-test-blueprint/pom.xml Fri Apr 27 11:56:11 2012
@@ -52,6 +52,8 @@
             </exclusions>
         </dependency>
 
+        <!-- the ordering of the dependencies can matter as we load the dependencies from the classpath
+             with pojosr, and you may get a weird error if wrong order -->
         <dependency>
             <groupId>org.apache.aries.blueprint</groupId>
             <artifactId>org.apache.aries.blueprint</artifactId>
@@ -90,6 +92,10 @@
             <groupId>junit</groupId>
             <artifactId>junit</artifactId>
         </dependency>
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.configadmin</artifactId>
+        </dependency>
 
         <!-- optional dependencies for running tests -->
         <dependency>
@@ -103,11 +109,6 @@
             <version>${slf4j-version}</version>
             <scope>test</scope>
         </dependency>
-        <dependency>
-            <groupId>org.apache.felix</groupId>
-            <artifactId>org.apache.felix.configadmin</artifactId>
-            <scope>test</scope>
-        </dependency>
 
     </dependencies>