You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by an...@apache.org on 2009/09/15 11:36:43 UTC

svn commit: r815239 - /tuscany/java/sca/itest/jms/args/pom.xml

Author: antelder
Date: Tue Sep 15 09:36:43 2009
New Revision: 815239

URL: http://svn.apache.org/viewvc?rev=815239&view=rev
Log:
Clean up dependencies

Modified:
    tuscany/java/sca/itest/jms/args/pom.xml

Modified: tuscany/java/sca/itest/jms/args/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/java/sca/itest/jms/args/pom.xml?rev=815239&r1=815238&r2=815239&view=diff
==============================================================================
--- tuscany/java/sca/itest/jms/args/pom.xml (original)
+++ tuscany/java/sca/itest/jms/args/pom.xml Tue Sep 15 09:36:43 2009
@@ -25,6 +25,7 @@
         <version>1.6-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
+
     <artifactId>itest-jms-args</artifactId>
     <name>Apache Tuscany SCA iTest JMS Args</name>
 
@@ -38,28 +39,23 @@
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-implementation-java-runtime</artifactId>
+            <artifactId>tuscany-binding-jms-runtime</artifactId>
             <version>2.0-SNAPSHOT</version>
-            <scope>runtime</scope>
         </dependency>
 
+        <!--  uses ActiveMQ 5.1 as 4.1 Session.createQueue does not work using
+              a temporary queue name -->
         <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-binding-jms-runtime</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <groupId>org.apache.activemq</groupId>
+            <artifactId>activemq-core</artifactId>
+            <version>5.1.0</version>
         </dependency>
-
+                
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-host-jms-asf</artifactId>
+            <artifactId>tuscany-implementation-java-runtime</artifactId>
             <version>2.0-SNAPSHOT</version>
-        </dependency>
-
-        <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-            <version>4.5</version>
-            <scope>test</scope>
+            <scope>runtime</scope>
         </dependency>
 
         <dependency>
@@ -69,17 +65,6 @@
             <scope>test</scope>
         </dependency>
 
-        <!--  uses ActiveMQ 5.1 as 4.1 Session.createQueue does not work using
-              a temporary queue name -->
-        <dependency>
-            <groupId>org.apache.activemq</groupId>
-            <artifactId>activemq-core</artifactId>
-            <version>5.1.0</version>
-        </dependency>
-                
     </dependencies>
 
-    <build>
-       <finalName>${artifactId}</finalName>
-    </build>
 </project>