You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by ge...@apache.org on 2008/08/29 15:00:29 UTC

svn commit: r690244 - /servicemix/components/engines/servicemix-scripting/trunk/pom.xml

Author: gertv
Date: Fri Aug 29 06:00:27 2008
New Revision: 690244

URL: http://svn.apache.org/viewvc?rev=690244&view=rev
Log:
SM-1455: servicemix-scripting can now be built using servicemix-core only as a test dependency

Modified:
    servicemix/components/engines/servicemix-scripting/trunk/pom.xml

Modified: servicemix/components/engines/servicemix-scripting/trunk/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/engines/servicemix-scripting/trunk/pom.xml?rev=690244&r1=690243&r2=690244&view=diff
==============================================================================
--- servicemix/components/engines/servicemix-scripting/trunk/pom.xml (original)
+++ servicemix/components/engines/servicemix-scripting/trunk/pom.xml Fri Aug 29 06:00:27 2008
@@ -122,6 +122,23 @@
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
     </dependency>
+    <dependency>
+      <groupId>org.apache.geronimo.specs</groupId>
+      <artifactId>geronimo-jta_1.1_spec</artifactId>
+    </dependency>
+    <!-- for unit/integration testing -->
+    <dependency>
+      <groupId>org.apache.servicemix</groupId>
+      <artifactId>servicemix-core</artifactId>
+      <version>${servicemix-version}</version>
+      <scope>test</scope>
+      <exclusions>
+        <exclusion>
+          <groupId>org.springframework</groupId>
+          <artifactId>spring-jmx</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
   </dependencies>
   
   <build>