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 2011/03/08 09:29:48 UTC

svn commit: r1079294 - in /camel/trunk/examples/camel-example-guice-jms: pom.xml src/test/java/org/apache/camel/example/guice/jms/GuiceTest.java

Author: davsclaus
Date: Tue Mar  8 08:29:48 2011
New Revision: 1079294

URL: http://svn.apache.org/viewvc?rev=1079294&view=rev
Log:
CAMEL-3765: Removed dep on Spring 2.5 for guice example.

Removed:
    camel/trunk/examples/camel-example-guice-jms/src/test/java/org/apache/camel/example/guice/jms/GuiceTest.java
Modified:
    camel/trunk/examples/camel-example-guice-jms/pom.xml

Modified: camel/trunk/examples/camel-example-guice-jms/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/examples/camel-example-guice-jms/pom.xml?rev=1079294&r1=1079293&r2=1079294&view=diff
==============================================================================
--- camel/trunk/examples/camel-example-guice-jms/pom.xml (original)
+++ camel/trunk/examples/camel-example-guice-jms/pom.xml Tue Mar  8 08:29:48 2011
@@ -33,7 +33,8 @@
 
     <properties>
         <camel.osgi.export.pkg>org.apache.camel.example.guice.jms.*</camel.osgi.export.pkg>
-        <camel.osgi.import.additional>org.apache.activemq.xbean,org.apache.activemq.broker,org.apache.activemq.pool
+        <camel.osgi.import.additional>
+            org.apache.activemq.xbean,org.apache.activemq.broker,org.apache.activemq.pool
         </camel.osgi.import.additional>
         <camel.osgi.activator>org.apache.camel.example.guice.jms.MyActivator</camel.osgi.activator>
     </properties>
@@ -65,11 +66,6 @@
             <artifactId>org.osgi.core</artifactId>
             <scope>provided</scope>
         </dependency>
-        <dependency>
-            <groupId>org.springframework.osgi</groupId>
-            <artifactId>spring-osgi-core</artifactId>
-            <scope>provided</scope>
-        </dependency>
 
         <!-- lets use log4j -->
         <dependency>
@@ -133,13 +129,6 @@
                 </executions>
             </plugin>
 
-            <!-- Allows the routes to be run via 'mvn guice:run' -->
-            <plugin>
-                <groupId>org.apache.camel</groupId>
-                <artifactId>guice-maven-plugin</artifactId>
-                <version>${project.version}</version>
-            </plugin>
-
             <!-- Allows the example to be run via 'mvn compile exec:java' -->
             <plugin>
                 <groupId>org.codehaus.mojo</groupId>