[jboss-cvs] JBossAS SVN: r98865 - in projects/snowdrop/examples/trunk/sportsclub: sportsclub-ear and 5 other directories.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Tue Dec 22 15:02:37 EST 2009
Author: marius.bogoevici
Date: 2009-12-22 15:02:36 -0500 (Tue, 22 Dec 2009)
New Revision: 98865
Added:
projects/snowdrop/examples/trunk/sportsclub/sportsclub-ear/src/
projects/snowdrop/examples/trunk/sportsclub/sportsclub-ear/src/main/
projects/snowdrop/examples/trunk/sportsclub/sportsclub-ear/src/main/application/
projects/snowdrop/examples/trunk/sportsclub/sportsclub-ear/src/main/application/META-INF/
projects/snowdrop/examples/trunk/sportsclub/sportsclub-ear/src/main/application/META-INF/jboss-spring.xml
Removed:
projects/snowdrop/examples/trunk/sportsclub/sportsclub-subscriptions-ejb/src/main/resources/META-INF/
Modified:
projects/snowdrop/examples/trunk/sportsclub/pom.xml
Log:
Move Spring Deployer descriptor at EAR level (as it should be)
Modified: projects/snowdrop/examples/trunk/sportsclub/pom.xml
===================================================================
--- projects/snowdrop/examples/trunk/sportsclub/pom.xml 2009-12-22 19:58:56 UTC (rev 98864)
+++ projects/snowdrop/examples/trunk/sportsclub/pom.xml 2009-12-22 20:02:36 UTC (rev 98865)
@@ -76,6 +76,19 @@
<version>2.5.6.SEC01</version>
</dependency>
+
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-web</artifactId>
+ <version>2.5.6.SEC01</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-webmvc</artifactId>
+ <version>2.5.6.SEC01</version>
+ </dependency>
+
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
Copied: projects/snowdrop/examples/trunk/sportsclub/sportsclub-ear/src/main/application/META-INF/jboss-spring.xml (from rev 98119, projects/snowdrop/examples/trunk/sportsclub/sportsclub-subscriptions-ejb/src/main/resources/META-INF/jboss-spring.xml)
===================================================================
--- projects/snowdrop/examples/trunk/sportsclub/sportsclub-ear/src/main/application/META-INF/jboss-spring.xml (rev 0)
+++ projects/snowdrop/examples/trunk/sportsclub/sportsclub-ear/src/main/application/META-INF/jboss-spring.xml 2009-12-22 20:02:36 UTC (rev 98865)
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<beans xmlns="http://www.springframework.org/schema/beans"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
+
+ <description>BeanFactory=(SpringDao)</description>
+
+ <import resource="classpath*:dao-context.xml"/>
+ <import resource="classpath*:infrastructure.xml"/>
+
+
+</beans>
\ No newline at end of file
More information about the jboss-cvs-commits
mailing list