Author: ningjiang
Date: Wed Jul  2 18:41:17 2008
New Revision: 673559

URL: http://svn.apache.org/viewvc?rev=673559&view=rev
Log:
CAMEL-648 removed camel-core-test.jar from the bundler jar

Modified:
    activemq/camel/trunk/apache-camel/bundle/pom.xml
    activemq/camel/trunk/components/camel-rmi/pom.xml
    activemq/camel/trunk/components/camel-stream/pom.xml
    activemq/camel/trunk/tests/camel-itest-spring-2.0/pom.xml
    activemq/camel/trunk/tests/camel-itest/pom.xml
    activemq/camel/trunk/tests/camel-partial-classpath-test/pom.xml

Modified: activemq/camel/trunk/apache-camel/bundle/pom.xml
URL: 
http://svn.apache.org/viewvc/activemq/camel/trunk/apache-camel/bundle/pom.xml?rev=673559&r1=673558&r2=673559&view=diff
==============================================================================
--- activemq/camel/trunk/apache-camel/bundle/pom.xml (original)
+++ activemq/camel/trunk/apache-camel/bundle/pom.xml Wed Jul  2 18:41:17 2008
@@ -274,7 +274,6 @@
               <artifactSet>
                 <excludes>
                   <exclude>org.apache.camel:camel-bundle</exclude>
-                  
<exclude>org.apache.camel:camel-core:test-jar:tests</exclude>                  
                 </excludes>
               </artifactSet> 
               <shadedGroupFilter>org.apache.camel</shadedGroupFilter>

Modified: activemq/camel/trunk/components/camel-rmi/pom.xml
URL: 
http://svn.apache.org/viewvc/activemq/camel/trunk/components/camel-rmi/pom.xml?rev=673559&r1=673558&r2=673559&view=diff
==============================================================================
--- activemq/camel/trunk/components/camel-rmi/pom.xml (original)
+++ activemq/camel/trunk/components/camel-rmi/pom.xml Wed Jul  2 18:41:17 2008
@@ -48,6 +48,7 @@
       <groupId>org.apache.camel</groupId>
       <artifactId>camel-core</artifactId>
       <type>test-jar</type>
+      <scope>test</scope>
     </dependency>
 
     <!-- to allow Spring annotations (jmx) to be tested -->

Modified: activemq/camel/trunk/components/camel-stream/pom.xml
URL: 
http://svn.apache.org/viewvc/activemq/camel/trunk/components/camel-stream/pom.xml?rev=673559&r1=673558&r2=673559&view=diff
==============================================================================
--- activemq/camel/trunk/components/camel-stream/pom.xml (original)
+++ activemq/camel/trunk/components/camel-stream/pom.xml Wed Jul  2 18:41:17 
2008
@@ -50,6 +50,7 @@
             <groupId>org.apache.camel</groupId>
             <artifactId>camel-core</artifactId>
             <type>test-jar</type>
+            <scope>test</scope>
         </dependency>
         <dependency>
           <groupId>commons-logging</groupId>

Modified: activemq/camel/trunk/tests/camel-itest-spring-2.0/pom.xml
URL: 
http://svn.apache.org/viewvc/activemq/camel/trunk/tests/camel-itest-spring-2.0/pom.xml?rev=673559&r1=673558&r2=673559&view=diff
==============================================================================
--- activemq/camel/trunk/tests/camel-itest-spring-2.0/pom.xml (original)
+++ activemq/camel/trunk/tests/camel-itest-spring-2.0/pom.xml Wed Jul  2 
18:41:17 2008
@@ -74,19 +74,23 @@
                <dependency>
                        <groupId>junit</groupId>
                        <artifactId>junit</artifactId>
+                        <scope>test</scope>
                </dependency>
                <dependency>
                        <groupId>org.apache.camel</groupId>
                        <artifactId>camel-core</artifactId>
                        <type>test-jar</type>
+                        <scope>test</scope>
                </dependency>
                <dependency>
                        <groupId>commons-logging</groupId>
                        <artifactId>commons-logging</artifactId>
+                        <scope>test</scope>
                </dependency>
                <dependency>
                        <groupId>log4j</groupId>
                        <artifactId>log4j</artifactId>
+                        <scope>test</scope>
                </dependency>
 
                <!-- specific Spring version to test -->
@@ -94,11 +98,13 @@
                        <groupId>org.springframework</groupId>
                        <artifactId>spring</artifactId>
                        <version>2.0.8</version>
+                        <scope>test</scope>
                </dependency>
 
                <dependency>
                        <groupId>org.apache.activemq</groupId>
                        <artifactId>activemq-core</artifactId>
+                        <scope>test</scope>
                </dependency>
        </dependencies>
 </project>

Modified: activemq/camel/trunk/tests/camel-itest/pom.xml
URL: 
http://svn.apache.org/viewvc/activemq/camel/trunk/tests/camel-itest/pom.xml?rev=673559&r1=673558&r2=673559&view=diff
==============================================================================
--- activemq/camel/trunk/tests/camel-itest/pom.xml (original)
+++ activemq/camel/trunk/tests/camel-itest/pom.xml Wed Jul  2 18:41:17 2008
@@ -87,23 +87,28 @@
     <dependency>
       <groupId>org.apache.activemq</groupId>
       <artifactId>activemq-core</artifactId>
+      <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.camel</groupId>
       <artifactId>camel-core</artifactId>
       <type>test-jar</type>
+      <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>commons-logging</groupId>
       <artifactId>commons-logging</artifactId>
+      <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>commons-collections</groupId>
       <artifactId>commons-collections</artifactId>
+      <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>log4j</groupId>
       <artifactId>log4j</artifactId>
+      <scope>test</scope>
     </dependency>
   </dependencies>
 

Modified: activemq/camel/trunk/tests/camel-partial-classpath-test/pom.xml
URL: 
http://svn.apache.org/viewvc/activemq/camel/trunk/tests/camel-partial-classpath-test/pom.xml?rev=673559&r1=673558&r2=673559&view=diff
==============================================================================
--- activemq/camel/trunk/tests/camel-partial-classpath-test/pom.xml (original)
+++ activemq/camel/trunk/tests/camel-partial-classpath-test/pom.xml Wed Jul  2 
18:41:17 2008
@@ -56,19 +56,23 @@
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
+      <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.camel</groupId>
       <artifactId>camel-core</artifactId>
       <type>test-jar</type>
+      <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>commons-logging</groupId>
       <artifactId>commons-logging</artifactId>
+      <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>log4j</groupId>
       <artifactId>log4j</artifactId>
+      <scope>test</scope>
     </dependency>
   </dependencies>
 </project>


Reply via email to