[jboss-cvs] JBossAS SVN: r104653 - in projects/snowdrop/examples/trunk/sportsclub: sportsclub-ear and 4 other directories.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Mon May 10 23:01:36 EDT 2010
Author: marius.bogoevici
Date: 2010-05-10 23:01:36 -0400 (Mon, 10 May 2010)
New Revision: 104653
Modified:
projects/snowdrop/examples/trunk/sportsclub/pom.xml
projects/snowdrop/examples/trunk/sportsclub/sportsclub-ear/pom.xml
projects/snowdrop/examples/trunk/sportsclub/sportsclub-invoicing-webmvc/pom.xml
projects/snowdrop/examples/trunk/sportsclub/sportsclub-invoicing-webmvc/src/main/webapp/WEB-INF/spring-business-context.xml
projects/snowdrop/examples/trunk/sportsclub/sportsclub-jpa-ear/pom.xml
projects/snowdrop/examples/trunk/sportsclub/sportsclub-subscriptions-ejb/pom.xml
Log:
build adjustments
Modified: projects/snowdrop/examples/trunk/sportsclub/pom.xml
===================================================================
--- projects/snowdrop/examples/trunk/sportsclub/pom.xml 2010-05-11 02:53:01 UTC (rev 104652)
+++ projects/snowdrop/examples/trunk/sportsclub/pom.xml 2010-05-11 03:01:36 UTC (rev 104653)
@@ -100,12 +100,24 @@
<dependency>
<groupId>org.springframework</groupId>
+ <artifactId>spring-core</artifactId>
+ <version>${spring.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
+ <artifactId>spring-context-support</artifactId>
+ <version>${spring.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
<version>${spring.version}</version>
</dependency>
Modified: projects/snowdrop/examples/trunk/sportsclub/sportsclub-ear/pom.xml
===================================================================
--- projects/snowdrop/examples/trunk/sportsclub/sportsclub-ear/pom.xml 2010-05-11 02:53:01 UTC (rev 104652)
+++ projects/snowdrop/examples/trunk/sportsclub/sportsclub-ear/pom.xml 2010-05-11 03:01:36 UTC (rev 104653)
@@ -68,6 +68,10 @@
</dependency>
<dependency>
<groupId>org.springframework</groupId>
+ <artifactId>spring-core</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
</dependency>
<dependency>
@@ -76,6 +80,10 @@
</dependency>
<dependency>
<groupId>org.springframework</groupId>
+ <artifactId>spring-context-support</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.springframework</groupId>
<artifactId>spring-jms</artifactId>
</dependency>
<dependency>
Modified: projects/snowdrop/examples/trunk/sportsclub/sportsclub-invoicing-webmvc/pom.xml
===================================================================
--- projects/snowdrop/examples/trunk/sportsclub/sportsclub-invoicing-webmvc/pom.xml 2010-05-11 02:53:01 UTC (rev 104652)
+++ projects/snowdrop/examples/trunk/sportsclub/sportsclub-invoicing-webmvc/pom.xml 2010-05-11 03:01:36 UTC (rev 104653)
@@ -25,7 +25,7 @@
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
- <version>2.5.6.SEC01</version>
+ <version>${spring.version}</version>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
@@ -52,6 +52,7 @@
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
Modified: projects/snowdrop/examples/trunk/sportsclub/sportsclub-invoicing-webmvc/src/main/webapp/WEB-INF/spring-business-context.xml
===================================================================
--- projects/snowdrop/examples/trunk/sportsclub/sportsclub-invoicing-webmvc/src/main/webapp/WEB-INF/spring-business-context.xml 2010-05-11 02:53:01 UTC (rev 104652)
+++ projects/snowdrop/examples/trunk/sportsclub/sportsclub-invoicing-webmvc/src/main/webapp/WEB-INF/spring-business-context.xml 2010-05-11 03:01:36 UTC (rev 104653)
@@ -27,11 +27,11 @@
<bean id="activationSpecFactory" class="org.springframework.jms.listener.endpoint.DefaultJmsActivationSpecFactory">
<property name="activationSpecClass" value="org.jboss.resource.adapter.jms.inflow.JmsActivationSpec"/>
<property name="defaultProperties">
- <value>
- clientId=remote
- subscriptionName=jca-paymentProcessor
- useDLQ=false
- </value>
+ <props>
+ <prop key="clientId">remote</prop>
+ <prop key="subscriptionName">jca-paymentProcessor</prop>
+ <prop key="useDLQ">false</prop>
+ </props>
</property>
</bean>
Modified: projects/snowdrop/examples/trunk/sportsclub/sportsclub-jpa-ear/pom.xml
===================================================================
--- projects/snowdrop/examples/trunk/sportsclub/sportsclub-jpa-ear/pom.xml 2010-05-11 02:53:01 UTC (rev 104652)
+++ projects/snowdrop/examples/trunk/sportsclub/sportsclub-jpa-ear/pom.xml 2010-05-11 03:01:36 UTC (rev 104653)
@@ -66,16 +66,23 @@
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</dependency>
- <dependency>
+ <dependency>
<groupId>org.springframework</groupId>
+ <artifactId>spring-core</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
</dependency>
- <dependency>
+ <dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
+ <artifactId>spring-context-support</artifactId>
+ </dependency> <dependency>
+ <groupId>org.springframework</groupId>
<artifactId>spring-jms</artifactId>
</dependency>
<dependency>
Modified: projects/snowdrop/examples/trunk/sportsclub/sportsclub-subscriptions-ejb/pom.xml
===================================================================
--- projects/snowdrop/examples/trunk/sportsclub/sportsclub-subscriptions-ejb/pom.xml 2010-05-11 02:53:01 UTC (rev 104652)
+++ projects/snowdrop/examples/trunk/sportsclub/sportsclub-subscriptions-ejb/pom.xml 2010-05-11 03:01:36 UTC (rev 104653)
@@ -48,7 +48,7 @@
<dependency>
<groupId>org.jboss.snowdrop</groupId>
<artifactId>snowdrop-deployers</artifactId>
- <version>1.0.0.GA</version>
+ <version>${snowdrop.version}</version>
</dependency>
</dependencies>
More information about the jboss-cvs-commits
mailing list