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 2008/07/16 12:55:33 UTC

svn commit: r677235 - /tuscany/java/sca/modules/binding-jms-runtime/pom.xml

Author: antelder
Date: Wed Jul 16 03:55:33 2008
New Revision: 677235

URL: http://svn.apache.org/viewvc?rev=677235&view=rev
Log:
Change JMS API dependency to have scope of provided so its not draged in unless you explicitly ask for it

Modified:
    tuscany/java/sca/modules/binding-jms-runtime/pom.xml

Modified: tuscany/java/sca/modules/binding-jms-runtime/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/java/sca/modules/binding-jms-runtime/pom.xml?rev=677235&r1=677234&r2=677235&view=diff
==============================================================================
--- tuscany/java/sca/modules/binding-jms-runtime/pom.xml (original)
+++ tuscany/java/sca/modules/binding-jms-runtime/pom.xml Wed Jul 16 03:55:33 2008
@@ -67,6 +67,19 @@
         </dependency>
 
         <dependency>
+           <groupId>org.apache.geronimo.specs</groupId>
+           <artifactId>geronimo-jms_1.1_spec</artifactId>
+           <version>1.1</version>
+           <scope>provided</scope>
+           <exclusions>
+               <exclusion>
+                   <groupId>org.apache.geronimo.specs</groupId>
+                   <artifactId>geronimo-jms_1.1_spec</artifactId>
+               </exclusion>
+           </exclusions>
+        </dependency>         
+
+        <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-java-runtime</artifactId>
             <version>1.4-SNAPSHOT</version>
@@ -87,18 +100,6 @@
             <scope>test</scope>
         </dependency>
         
-        <dependency>
-           <groupId>org.apache.geronimo.specs</groupId>
-           <artifactId>geronimo-jms_1.1_spec</artifactId>
-           <version>1.1</version>
-           <exclusions>
-               <exclusion>
-                   <groupId>org.apache.geronimo.specs</groupId>
-                   <artifactId>geronimo-jms_1.1_spec</artifactId>
-               </exclusion>
-           </exclusions>
-        </dependency>         
-
     </dependencies>