You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by cw...@apache.org on 2010/12/22 17:54:59 UTC

svn commit: r1051982 - /uima/uima-as/trunk/uimaj-as-jms/pom.xml

Author: cwiklik
Date: Wed Dec 22 16:54:58 2010
New Revision: 1051982

URL: http://svn.apache.org/viewvc?rev=1051982&view=rev
Log:
UIMA-1876 Modified to depend on AMQ 5.4.1 and Spring 3.0.3

Modified:
    uima/uima-as/trunk/uimaj-as-jms/pom.xml

Modified: uima/uima-as/trunk/uimaj-as-jms/pom.xml
URL: http://svn.apache.org/viewvc/uima/uima-as/trunk/uimaj-as-jms/pom.xml?rev=1051982&r1=1051981&r2=1051982&view=diff
==============================================================================
--- uima/uima-as/trunk/uimaj-as-jms/pom.xml (original)
+++ uima/uima-as/trunk/uimaj-as-jms/pom.xml Wed Dec 22 16:54:58 2010
@@ -67,33 +67,60 @@
 			<scope>compile</scope>
 		</dependency>
 
+    <!--  
+     Spring Framework Dependencies
+    -->
     <dependency>
-			<groupId>org.springframework</groupId>
-			<artifactId>spring</artifactId>
-			<version>2.0.6</version>
-		</dependency> 
+      <groupId>org.springframework</groupId>
+      <artifactId>spring-core</artifactId>
+      <version>3.0.3.RELEASE</version>
+    </dependency>
+     
+    <dependency>
+      <groupId>org.springframework</groupId>
+      <artifactId>spring-asm</artifactId>
+      <version>3.0.3.RELEASE</version>
+    </dependency>
 
-		<dependency>
-			<groupId>org.apache.activemq</groupId>
-			<artifactId>apache-activemq</artifactId>
-			<version>4.1.1</version>
-			<exclusions>        
-        <exclusion>
-          <!-- exclude xstream 1.1.2 because it is broken 
-               xstream 1.2.2 (the fixed version) is included in another pom -->
-          <groupId>xstream</groupId>
-          <artifactId>xstream</artifactId>
-        </exclusion>
-                    <!--exclusion>
-                        <groupId>org.apache.activemq</groupId>
-                        <artifactId>activeio-core</artifactId>
-                    </exclusion>
-                    <exclusion>
-                        <groupId>org.apache.xbean</groupId>
-                        <artifactId>xbean-spring</artifactId>
-                    </exclusion-->
-      </exclusions>
-		</dependency> 
+    <dependency>
+      <groupId>org.springframework</groupId>
+      <artifactId>spring-beans</artifactId>
+      <version>3.0.3.RELEASE</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.springframework</groupId>
+      <artifactId>spring-context</artifactId>
+      <version>3.0.3.RELEASE</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.springframework</groupId>
+      <artifactId>spring-expression</artifactId>
+      <version>3.0.3.RELEASE</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.springframework</groupId>
+      <artifactId>spring-tx</artifactId>
+      <version>3.0.3.RELEASE</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.springframework</groupId>
+      <artifactId>spring-jms</artifactId>
+      <version>3.0.3.RELEASE</version>
+    </dependency>
+
+<!--
+		Active MQ Stuff
+	-->
+    <dependency>
+      <groupId>org.apache.activemq</groupId>
+      <artifactId>activemq-all</artifactId>
+      <version>5.4.1</version>
+    </dependency> 
+    
 		
 		<dependency>
 		    <groupId>org.apache.uima</groupId>