You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by hu...@apache.org on 2006/05/09 22:48:00 UTC

svn commit: r405529 - /struts/action2/trunk/apps/pom.xml

Author: husted
Date: Tue May  9 13:47:58 2006
New Revision: 405529

URL: http://svn.apache.org/viewcvs?rev=405529&view=rev
Log:
apps pom.xml
* Add Spring dependency to POM so that applications will deploy. 

Modified:
    struts/action2/trunk/apps/pom.xml

Modified: struts/action2/trunk/apps/pom.xml
URL: http://svn.apache.org/viewcvs/struts/action2/trunk/apps/pom.xml?rev=405529&r1=405528&r2=405529&view=diff
==============================================================================
--- struts/action2/trunk/apps/pom.xml (original)
+++ struts/action2/trunk/apps/pom.xml Tue May  9 13:47:58 2006
@@ -103,5 +103,43 @@
             <artifactId>struts-core</artifactId>
             <version>${pom.version}</version>
         </dependency>
+
+        <!-- Spring -->
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-beans</artifactId>
+            <version>1.2.6</version>
+            <optional>true</optional>
+        </dependency>
+
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-core</artifactId>
+            <version>1.2.6</version>
+            <optional>true</optional>
+        </dependency>
+
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-context</artifactId>
+            <version>1.2.6</version>
+            <optional>true</optional>
+        </dependency>
+
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-web</artifactId>
+            <version>1.2.6</version>
+            <optional>true</optional>
+        </dependency>
+
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-mock</artifactId>
+            <version>1.2.6</version>
+            <scope>test</scope>
+        </dependency>
+
+
     </dependencies>    
 </project>