Author: wsmoak Date: Sun Dec 24 13:51:35 2006 New Revision: 490075 URL: http://svn.apache.org/viewvc?view=rev&rev=490075 Log: Spring seems to be necessary for the unit tests, but not for the app itself. WW-1412
Modified: struts/maven/trunk/struts2-archetype-blank/src/main/resources/archetype-resources/pom.xml Modified: struts/maven/trunk/struts2-archetype-blank/src/main/resources/archetype-resources/pom.xml URL: http://svn.apache.org/viewvc/struts/maven/trunk/struts2-archetype-blank/src/main/resources/archetype-resources/pom.xml?view=diff&rev=490075&r1=490074&r2=490075 ============================================================================== --- struts/maven/trunk/struts2-archetype-blank/src/main/resources/archetype-resources/pom.xml (original) +++ struts/maven/trunk/struts2-archetype-blank/src/main/resources/archetype-resources/pom.xml Sun Dec 24 13:51:35 2006 @@ -19,6 +19,19 @@ </dependency> <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-mock</artifactId> + <version>2.0.1</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-core</artifactId> + <version>2.0.1</version> + <scope>test</scope> + </dependency> + + <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.4</version> @@ -36,37 +49,6 @@ <groupId>org.apache.struts</groupId> <artifactId>struts2-core</artifactId> <version>2.0.2-SNAPSHOT</version> - </dependency> - - <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-beans</artifactId> - <version>1.2.8</version> - </dependency> - - <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-core</artifactId> - <version>1.2.8</version> - </dependency> - - <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-context</artifactId> - <version>1.2.8</version> - </dependency> - - <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-web</artifactId> - <version>1.2.8</version> - </dependency> - - <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-mock</artifactId> - <version>1.2.8</version> - <scope>test</scope> </dependency> </dependencies>