Seam SVN: r15110 - in branches/community/Seam_2_3/examples-ee6/metawidget/booking: booking-web and 1 other directory.
by seam-commits@lists.jboss.org
Author: maschmid
Date: 2012-09-04 09:23:21 -0400 (Tue, 04 Sep 2012)
New Revision: 15110
Modified:
branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-web/pom.xml
Log:
metawidget/booking update metawidget version to 2.4 which fixes behavior on mojarra 2.1.9 (JAVASERVERFACES-2283)
Modified: branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-ejb/pom.xml 2012-09-04 11:47:36 UTC (rev 15109)
+++ branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-ejb/pom.xml 2012-09-04 13:23:21 UTC (rev 15110)
@@ -94,12 +94,12 @@
<dependency>
<groupId>org.metawidget.modules</groupId>
<artifactId>metawidget-annotation</artifactId>
- <version>2.3</version>
+ <version>2.4</version>
</dependency>
<dependency>
<groupId>org.metawidget.modules.faces</groupId>
<artifactId>metawidget-facesannotation</artifactId>
- <version>2.3</version>
+ <version>2.4</version>
</dependency>
</dependencies>
Modified: branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-web/pom.xml 2012-09-04 11:47:36 UTC (rev 15109)
+++ branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-web/pom.xml 2012-09-04 13:23:21 UTC (rev 15110)
@@ -77,7 +77,7 @@
<dependency>
<groupId>org.metawidget.modules.faces</groupId>
<artifactId>metawidget-faces</artifactId>
- <version>2.3</version>
+ <version>2.4</version>
<exclusions>
<exclusion>
<groupId>org.metawidget.modules</groupId>
@@ -88,7 +88,7 @@
<dependency>
<groupId>org.metawidget.modules.faces</groupId>
<artifactId>metawidget-richfaces</artifactId>
- <version>2.3</version>
+ <version>2.4</version>
<exclusions>
<exclusion>
<groupId>org.metawidget.modules</groupId>
@@ -99,7 +99,7 @@
<dependency>
<groupId>org.metawidget.modules</groupId>
<artifactId>metawidget-jpa</artifactId>
- <version>2.3</version>
+ <version>2.4</version>
<exclusions>
<exclusion>
<groupId>org.metawidget.modules</groupId>
@@ -110,7 +110,7 @@
<dependency>
<groupId>org.metawidget.modules</groupId>
<artifactId>metawidget-beanvalidation</artifactId>
- <version>2.3</version>
+ <version>2.4</version>
<exclusions>
<exclusion>
<groupId>org.metawidget.modules</groupId>
12 years, 2 months
Seam SVN: r15109 - tags.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-09-04 07:47:36 -0400 (Tue, 04 Sep 2012)
New Revision: 15109
Added:
tags/JBPAPP_5_2_0_ER2/
Log:
applied patch from RHEL6 brew for ER2
12 years, 2 months
Seam SVN: r15108 - branches/community/Seam_2_3/functional-tests/src/main/java/org/jboss/seam/example/common/test/booking/selenium.
by seam-commits@lists.jboss.org
Author: maschmid
Date: 2012-09-04 07:37:02 -0400 (Tue, 04 Sep 2012)
New Revision: 15108
Modified:
branches/community/Seam_2_3/functional-tests/src/main/java/org/jboss/seam/example/common/test/booking/selenium/ConversationTest.java
Log:
functional tests, add a slight delay after browser.openWindow in booking conversationTest to resolve intermittent ftest failures
Modified: branches/community/Seam_2_3/functional-tests/src/main/java/org/jboss/seam/example/common/test/booking/selenium/ConversationTest.java
===================================================================
--- branches/community/Seam_2_3/functional-tests/src/main/java/org/jboss/seam/example/common/test/booking/selenium/ConversationTest.java 2012-09-04 10:53:25 UTC (rev 15107)
+++ branches/community/Seam_2_3/functional-tests/src/main/java/org/jboss/seam/example/common/test/booking/selenium/ConversationTest.java 2012-09-04 11:37:02 UTC (rev 15108)
@@ -47,7 +47,17 @@
// Start booking in window 1
browser.openWindow(CONTEXT_PATH + getProperty("MAIN_PAGE"), "1");
browser.openWindow(CONTEXT_PATH + getProperty("MAIN_PAGE"), "2");
+
+ // A slight delay seems to be necessary for some reason after openWindow (doesn't wait for a redirect maybe?)
+ try
+ {
+ Thread.sleep(1000);
+ }
+ catch (InterruptedException e)
+ {}
+
browser.selectWindow("1");
+
if (!isLoggedIn()) {
login();
}
12 years, 2 months
Seam SVN: r15107 - branches/enterprise/JBPAPP_5_0/build.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-09-04 06:53:25 -0400 (Tue, 04 Sep 2012)
New Revision: 15107
Modified:
branches/enterprise/JBPAPP_5_0/build/core.pom.xml
branches/enterprise/JBPAPP_5_0/build/ioc.pom.xml
branches/enterprise/JBPAPP_5_0/build/root.pom.xml
Log:
reverted upgrade of javassist 3.12.0.GA to 3.16.0.GA
Modified: branches/enterprise/JBPAPP_5_0/build/core.pom.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/build/core.pom.xml 2012-09-04 08:44:23 UTC (rev 15106)
+++ branches/enterprise/JBPAPP_5_0/build/core.pom.xml 2012-09-04 10:53:25 UTC (rev 15107)
@@ -59,7 +59,7 @@
</dependency>
<dependency>
- <groupId>org.javassist</groupId>
+ <groupId>javassist</groupId>
<artifactId>javassist</artifactId>
<scope>provided</scope>
</dependency>
Modified: branches/enterprise/JBPAPP_5_0/build/ioc.pom.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/build/ioc.pom.xml 2012-09-04 08:44:23 UTC (rev 15106)
+++ branches/enterprise/JBPAPP_5_0/build/ioc.pom.xml 2012-09-04 10:53:25 UTC (rev 15107)
@@ -53,7 +53,7 @@
</dependency>
<dependency>
- <groupId>org.javassist</groupId>
+ <groupId>javassist</groupId>
<artifactId>javassist</artifactId>
<scope>provided</scope>
</dependency>
Modified: branches/enterprise/JBPAPP_5_0/build/root.pom.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/build/root.pom.xml 2012-09-04 08:44:23 UTC (rev 15106)
+++ branches/enterprise/JBPAPP_5_0/build/root.pom.xml 2012-09-04 10:53:25 UTC (rev 15107)
@@ -628,9 +628,9 @@
</dependency>
<dependency>
- <groupId>org.javassist</groupId>
+ <groupId>javassist</groupId>
<artifactId>javassist</artifactId>
- <version>3.16.0.GA</version>
+ <version>3.12.0.GA</version>
</dependency>
<dependency>
12 years, 2 months
Seam SVN: r15106 - branches/community/Seam_2_3/jboss-seam-gen/dist/ide-project-files/eclipse.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-09-04 04:44:23 -0400 (Tue, 04 Sep 2012)
New Revision: 15106
Modified:
branches/community/Seam_2_3/jboss-seam-gen/dist/ide-project-files/eclipse/.classpath
Log:
JBSEAM-5025
Modified: branches/community/Seam_2_3/jboss-seam-gen/dist/ide-project-files/eclipse/.classpath
===================================================================
--- branches/community/Seam_2_3/jboss-seam-gen/dist/ide-project-files/eclipse/.classpath 2012-09-03 06:18:28 UTC (rev 15105)
+++ branches/community/Seam_2_3/jboss-seam-gen/dist/ide-project-files/eclipse/.classpath 2012-09-04 08:44:23 UTC (rev 15106)
@@ -35,7 +35,6 @@
<classpathentry kind="lib" path="lib/fontbox.jar"/>
<classpathentry kind="lib" path="lib/lucene-core.jar"/>
<classpathentry kind="lib" path="lib/resteasy-atom-provider.jar"/>
- <classpathentry kind="lib" path="lib/jboss-jsf-api_2.0_spec.jar"/>
<classpathentry kind="lib" path="lib/jboss-jsf-api_2.1_spec.jar"/>
<classpathentry kind="lib" path="lib/spring-tx.jar"/>
<classpathentry kind="lib" path="lib/cssparser.jar"/>
12 years, 2 months
Seam SVN: r15105 - in branches/community/Seam_2_3: bom and 193 other directories.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-09-03 02:18:28 -0400 (Mon, 03 Sep 2012)
New Revision: 15105
Modified:
branches/community/Seam_2_3/bom/pom.xml
branches/community/Seam_2_3/build/common.build.xml
branches/community/Seam_2_3/distribution/pom.xml
branches/community/Seam_2_3/examples-ee6/blog/blog-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/blog/blog-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/blog/blog-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/blog/blog-web/pom.xml
branches/community/Seam_2_3/examples-ee6/blog/pom.xml
branches/community/Seam_2_3/examples-ee6/booking/booking-ear/build.xml
branches/community/Seam_2_3/examples-ee6/booking/booking-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/booking/booking-ejb/build.xml
branches/community/Seam_2_3/examples-ee6/booking/booking-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/booking/booking-tests/build.xml
branches/community/Seam_2_3/examples-ee6/booking/booking-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/booking/booking-web/build.xml
branches/community/Seam_2_3/examples-ee6/booking/booking-web/pom.xml
branches/community/Seam_2_3/examples-ee6/booking/pom.xml
branches/community/Seam_2_3/examples-ee6/contactlist/contactlist-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/contactlist/contactlist-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/contactlist/contactlist-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/contactlist/contactlist-web/pom.xml
branches/community/Seam_2_3/examples-ee6/contactlist/pom.xml
branches/community/Seam_2_3/examples-ee6/drools/drools-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/drools/drools-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/drools/drools-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/drools/drools-web/pom.xml
branches/community/Seam_2_3/examples-ee6/drools/pom.xml
branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-ear/build.xml
branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-ejb/build.xml
branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-tests/build.xml
branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-web/build.xml
branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-web/pom.xml
branches/community/Seam_2_3/examples-ee6/dvdstore/pom.xml
branches/community/Seam_2_3/examples-ee6/excel/excel-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/excel/excel-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/excel/excel-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/excel/excel-web/pom.xml
branches/community/Seam_2_3/examples-ee6/excel/pom.xml
branches/community/Seam_2_3/examples-ee6/groovybooking/groovybooking-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/groovybooking/groovybooking-web/pom.xml
branches/community/Seam_2_3/examples-ee6/groovybooking/pom.xml
branches/community/Seam_2_3/examples-ee6/guice/guice-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/guice/guice-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/guice/guice-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/guice/guice-web/pom.xml
branches/community/Seam_2_3/examples-ee6/guice/pom.xml
branches/community/Seam_2_3/examples-ee6/hibernate/hibernate-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/hibernate/hibernate-web/pom.xml
branches/community/Seam_2_3/examples-ee6/hibernate/pom.xml
branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-web/pom.xml
branches/community/Seam_2_3/examples-ee6/icefaces/pom.xml
branches/community/Seam_2_3/examples-ee6/itext/itext-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/itext/itext-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/itext/itext-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/itext/itext-web/pom.xml
branches/community/Seam_2_3/examples-ee6/itext/pom.xml
branches/community/Seam_2_3/examples-ee6/jee6/jee6-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/jee6/jee6-web/pom.xml
branches/community/Seam_2_3/examples-ee6/jee6/pom.xml
branches/community/Seam_2_3/examples-ee6/jpa/jpa-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/jpa/jpa-web/pom.xml
branches/community/Seam_2_3/examples-ee6/jpa/pom.xml
branches/community/Seam_2_3/examples-ee6/mail/mail-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/mail/mail-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/mail/mail-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/mail/mail-web/pom.xml
branches/community/Seam_2_3/examples-ee6/mail/pom.xml
branches/community/Seam_2_3/examples-ee6/messages/messages-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/messages/messages-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/messages/messages-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/messages/messages-web/pom.xml
branches/community/Seam_2_3/examples-ee6/messages/pom.xml
branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-web/pom.xml
branches/community/Seam_2_3/examples-ee6/metawidget/booking/pom.xml
branches/community/Seam_2_3/examples-ee6/metawidget/groovybooking/groovybooking-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/metawidget/groovybooking/groovybooking-web/pom.xml
branches/community/Seam_2_3/examples-ee6/metawidget/groovybooking/pom.xml
branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-web/pom.xml
branches/community/Seam_2_3/examples-ee6/nestedbooking/pom.xml
branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-web/pom.xml
branches/community/Seam_2_3/examples-ee6/numberguess/pom.xml
branches/community/Seam_2_3/examples-ee6/openid/openid-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/openid/openid-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/openid/openid-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/openid/openid-web/pom.xml
branches/community/Seam_2_3/examples-ee6/openid/pom.xml
branches/community/Seam_2_3/examples-ee6/pom.xml
branches/community/Seam_2_3/examples-ee6/quartz/pom.xml
branches/community/Seam_2_3/examples-ee6/quartz/quartz-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/quartz/quartz-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/quartz/quartz-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/quartz/quartz-web/pom.xml
branches/community/Seam_2_3/examples-ee6/registration/pom.xml
branches/community/Seam_2_3/examples-ee6/registration/registration-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/registration/registration-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/registration/registration-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/registration/registration-web/pom.xml
branches/community/Seam_2_3/examples-ee6/remoting/chatroom/chatroom-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/remoting/chatroom/chatroom-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/remoting/chatroom/chatroom-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/remoting/chatroom/chatroom-web/pom.xml
branches/community/Seam_2_3/examples-ee6/remoting/chatroom/pom.xml
branches/community/Seam_2_3/examples-ee6/remoting/gwt/gwt-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/remoting/gwt/gwt-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/remoting/gwt/gwt-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/remoting/gwt/gwt-web/pom.xml
branches/community/Seam_2_3/examples-ee6/remoting/gwt/pom.xml
branches/community/Seam_2_3/examples-ee6/remoting/helloworld/helloworld-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/remoting/helloworld/helloworld-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/remoting/helloworld/helloworld-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/remoting/helloworld/helloworld-web/pom.xml
branches/community/Seam_2_3/examples-ee6/remoting/helloworld/pom.xml
branches/community/Seam_2_3/examples-ee6/remoting/progressbar/pom.xml
branches/community/Seam_2_3/examples-ee6/remoting/progressbar/progressbar-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/remoting/progressbar/progressbar-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/remoting/progressbar/progressbar-web/pom.xml
branches/community/Seam_2_3/examples-ee6/restbay/pom.xml
branches/community/Seam_2_3/examples-ee6/restbay/restbay-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/restbay/restbay-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/restbay/restbay-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/restbay/restbay-web/pom.xml
branches/community/Seam_2_3/examples-ee6/rss/pom.xml
branches/community/Seam_2_3/examples-ee6/rss/rss-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/rss/rss-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/rss/rss-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/rss/rss-web/pom.xml
branches/community/Seam_2_3/examples-ee6/seambay/pom.xml
branches/community/Seam_2_3/examples-ee6/seambay/seambay-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/seambay/seambay-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/seambay/seambay-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/seambay/seambay-web/pom.xml
branches/community/Seam_2_3/examples-ee6/seamdiscs/pom.xml
branches/community/Seam_2_3/examples-ee6/seamdiscs/seamdiscs-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/seamdiscs/seamdiscs-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/seamdiscs/seamdiscs-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/seamdiscs/seamdiscs-web/pom.xml
branches/community/Seam_2_3/examples-ee6/seampay/pom.xml
branches/community/Seam_2_3/examples-ee6/seampay/seampay-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/seampay/seampay-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/seampay/seampay-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/seampay/seampay-web/pom.xml
branches/community/Seam_2_3/examples-ee6/seamspace/pom.xml
branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-ear/build.xml
branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-ejb/build.xml
branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-tests/build.xml
branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-web/build.xml
branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-web/pom.xml
branches/community/Seam_2_3/examples-ee6/spring/pom.xml
branches/community/Seam_2_3/examples-ee6/spring/spring-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/spring/spring-web/pom.xml
branches/community/Seam_2_3/examples-ee6/tasks/pom.xml
branches/community/Seam_2_3/examples-ee6/tasks/tasks-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/tasks/tasks-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/tasks/tasks-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/tasks/tasks-web/pom.xml
branches/community/Seam_2_3/examples-ee6/todo/pom.xml
branches/community/Seam_2_3/examples-ee6/todo/todo-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/todo/todo-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/todo/todo-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/todo/todo-web/pom.xml
branches/community/Seam_2_3/examples-ee6/ui/pom.xml
branches/community/Seam_2_3/examples-ee6/ui/ui-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/ui/ui-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/ui/ui-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/ui/ui-web/pom.xml
branches/community/Seam_2_3/examples-ee6/wicket/pom.xml
branches/community/Seam_2_3/examples-ee6/wicket/wicket-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/wicket/wicket-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/wicket/wicket-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/wicket/wicket-web/pom.xml
branches/community/Seam_2_3/functional-tests/pom.xml
branches/community/Seam_2_3/jboss-seam-debug/pom.xml
branches/community/Seam_2_3/jboss-seam-excel/pom.xml
branches/community/Seam_2_3/jboss-seam-flex/pom.xml
branches/community/Seam_2_3/jboss-seam-gen/pom.xml
branches/community/Seam_2_3/jboss-seam-ioc/pom.xml
branches/community/Seam_2_3/jboss-seam-jul/pom.xml
branches/community/Seam_2_3/jboss-seam-mail/pom.xml
branches/community/Seam_2_3/jboss-seam-pdf/pom.xml
branches/community/Seam_2_3/jboss-seam-remoting/pom.xml
branches/community/Seam_2_3/jboss-seam-resteasy/pom.xml
branches/community/Seam_2_3/jboss-seam-rss/pom.xml
branches/community/Seam_2_3/jboss-seam-ui/pom.xml
branches/community/Seam_2_3/jboss-seam-wicket/pom.xml
branches/community/Seam_2_3/jboss-seam/pom.xml
branches/community/Seam_2_3/pom.xml
branches/community/Seam_2_3/seam-cdk-helper/pom.xml
branches/community/Seam_2_3/seam-integration-tests/pom.xml
branches/community/Seam_2_3/seam-reference-guide/pom.xml
Log:
set next release string version 2.3.0.Final-SNAPSHOT
Modified: branches/community/Seam_2_3/bom/pom.xml
===================================================================
--- branches/community/Seam_2_3/bom/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/bom/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<groupId>org.jboss.seam</groupId>
<artifactId>bom</artifactId>
<name>Seam 2 Bill Of Materials </name>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<packaging>pom</packaging>
<licenses>
@@ -31,7 +31,7 @@
<properties>
<!-- Version string properties -->
- <version.seam>2.3.0.CR1</version.seam>
+ <version.seam>2.3.0.Final-SNAPSHOT</version.seam>
<version.wicket>1.4.14</version.wicket>
<version.drools>5.3.3.Final</version.drools>
<version.resteasy>2.0.1.GA</version.resteasy>
Modified: branches/community/Seam_2_3/build/common.build.xml
===================================================================
--- branches/community/Seam_2_3/build/common.build.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/build/common.build.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -47,7 +47,7 @@
<!-- User set properties, order of this and default properties is important! -->
<property file="${seam.dir}/build.properties" />
- <property name="complete.version" value="2.3.0.CR1" />
+ <property name="complete.version" value="2.3.0.Final-SNAPSHOT" />
<condition property="mavenized.property">
<not>
Modified: branches/community/Seam_2_3/distribution/pom.xml
===================================================================
--- branches/community/Seam_2_3/distribution/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/distribution/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>jboss-seam-parent</artifactId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/blog/blog-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/blog/blog-ear/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/blog/blog-ear/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -5,7 +5,7 @@
<parent>
<artifactId>blog</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/blog/blog-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/blog/blog-ejb/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/blog/blog-ejb/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.jboss.seam.examples-ee6</groupId>
<artifactId>blog</artifactId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/blog/blog-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/blog/blog-tests/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/blog/blog-tests/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.jboss.seam.examples-ee6</groupId>
<artifactId>blog</artifactId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/blog/blog-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/blog/blog-web/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/blog/blog-web/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -6,7 +6,7 @@
<parent>
<artifactId>blog</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/blog/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/blog/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/blog/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/Seam_2_3/examples-ee6/booking/booking-ear/build.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/booking/booking-ear/build.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/booking/booking-ear/build.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -40,7 +40,7 @@
<artifact:dependencies pathId="project.classpath" filesetId="project.fileset">
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam" version="2.3.0.CR1" scope="compile">
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam" version="2.3.0.Final-SNAPSHOT" scope="compile">
<exclusion groupId="org.testng" artifactId="testng"/>
<exclusion groupId="junit" artifactId="junit"/>
<exclusion groupId="org.jboss.spec.javax.faces" artifactId="jboss-jsf-api_2.0_spec"/>
Modified: branches/community/Seam_2_3/examples-ee6/booking/booking-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/booking/booking-ear/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/booking/booking-ear/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>booking</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/booking/booking-ejb/build.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/booking/booking-ejb/build.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/booking/booking-ejb/build.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -55,7 +55,7 @@
<dependency groupId="org.javassist" artifactId="javassist" version="3.15.0-GA" scope="provided"/>
<dependency groupId="org.jboss.el" artifactId="jboss-el" version="1.0_02.CR6" scope="compile"/>
<dependency groupId="org.jboss.logging" artifactId="jboss-logging" version="3.1.0.CR2" scope="provided"/>
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam" version="2.3.0.CR1" scope="compile">
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam" version="2.3.0.Final-SNAPSHOT" scope="compile">
<exclusion groupId="org.testng" artifactId="testng"/>
<exclusion groupId="junit" artifactId="junit"/>
<exclusion groupId="org.jboss.spec.javax.faces" artifactId="jboss-jsf-api_2.0_spec"/>
Modified: branches/community/Seam_2_3/examples-ee6/booking/booking-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/booking/booking-ejb/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/booking/booking-ejb/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>booking</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/booking/booking-tests/build.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/booking/booking-tests/build.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/booking/booking-tests/build.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -42,14 +42,14 @@
</artifact:dependencies>
<artifact:dependencies pathId="project.classpath">
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam" scope="test" version="2.3.0.CR1"/>
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam" scope="test" version="2.3.0.Final-SNAPSHOT"/>
<dependency groupId="org.slf4j" artifactId="slf4j-log4j12" scope="test" version="1.6.1"/>
<dependency groupId="org.hibernate.javax.persistence" artifactId="hibernate-jpa-2.0-api" version="1.0.1.Final"/>
<dependency groupId="org.jboss.spec.javax.faces" artifactId="jboss-jsf-api_2.0_spec" version="1.0.0.Final"/>
<dependency groupId="javax.mail" artifactId="mail" version="1.4"/>
<dependency groupId="org.seleniumhq.selenium" artifactId="selenium-server" version="2.21.0"/>
<dependency groupId="org.seleniumhq.selenium" artifactId="selenium-java" version="2.21.0"/>
- <dependency groupId="org.jboss.seam" artifactId="functional-tests" scope="test" version="2.3.0.CR1"/>
+ <dependency groupId="org.jboss.seam" artifactId="functional-tests" scope="test" version="2.3.0.Final-SNAPSHOT"/>
<dependency groupId="junit" artifactId="junit" scope="test" version="4.8.2"/>
<dependency groupId="org.jboss.arquillian.junit" artifactId="arquillian-junit-container" scope="test"
version="1.0.1.Final"/>
Modified: branches/community/Seam_2_3/examples-ee6/booking/booking-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/booking/booking-tests/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/booking/booking-tests/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>booking</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/booking/booking-web/build.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/booking/booking-web/build.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/booking/booking-web/build.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -42,11 +42,11 @@
</artifact:dependencies>
<artifact:dependencies pathId="project.classpath" filesetId="project.fileset" useScope="runtime">
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam-ui" version="2.3.0.CR1" scope="runtime">
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam-ui" version="2.3.0.Final-SNAPSHOT" scope="runtime">
<exclusion groupId="org.jboss.seam" artifactId="jboss-seam-jul"/>
<exclusion groupId="org.jboss.seam" artifactId="jboss-seam"/>
</dependency>
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam-debug" version="2.3.0.CR1"
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam-debug" version="2.3.0.Final-SNAPSHOT"
scope="compile">
<exclusion groupId="org.jboss.seam" artifactId="jboss-seam"/>
</dependency>
Modified: branches/community/Seam_2_3/examples-ee6/booking/booking-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/booking/booking-web/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/booking/booking-web/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>booking</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/booking/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/booking/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/booking/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<packaging>pom</packaging>
Modified: branches/community/Seam_2_3/examples-ee6/contactlist/contactlist-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/contactlist/contactlist-ear/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/contactlist/contactlist-ear/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>contactlist</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/contactlist/contactlist-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/contactlist/contactlist-ejb/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/contactlist/contactlist-ejb/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>contactlist</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/contactlist/contactlist-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/contactlist/contactlist-tests/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/contactlist/contactlist-tests/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -5,7 +5,7 @@
<parent>
<artifactId>contactlist</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/contactlist/contactlist-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/contactlist/contactlist-web/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/contactlist/contactlist-web/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>contactlist</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/contactlist/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/contactlist/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/contactlist/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/Seam_2_3/examples-ee6/drools/drools-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/drools/drools-ear/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/drools/drools-ear/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.jboss.seam.examples-ee6</groupId>
<artifactId>drools</artifactId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/drools/drools-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/drools/drools-ejb/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/drools/drools-ejb/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.jboss.seam.examples-ee6</groupId>
<artifactId>drools</artifactId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/drools/drools-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/drools/drools-tests/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/drools/drools-tests/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.jboss.seam.examples-ee6</groupId>
<artifactId>drools</artifactId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/drools/drools-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/drools/drools-web/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/drools/drools-web/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.seam.examples-ee6</groupId>
<artifactId>drools</artifactId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/drools/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/drools/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/drools/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-ear/build.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-ear/build.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-ear/build.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -40,7 +40,7 @@
<artifact:dependencies pathId="project.classpath" filesetId="project.fileset">
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam" version="2.3.0.CR1" scope="compile">
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam" version="2.3.0.Final-SNAPSHOT" scope="compile">
<exclusion groupId="org.testng" artifactId="testng"/>
<exclusion groupId="junit" artifactId="junit"/>
<exclusion groupId="org.jboss.spec.javax.faces" artifactId="jboss-jsf-api_2.0_spec"/>
Modified: branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-ear/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-ear/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>dvdstore</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-ejb/build.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-ejb/build.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-ejb/build.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -44,7 +44,7 @@
scope="provided"/>
<dependency groupId="org.hibernate" artifactId="hibernate-validator" version="4.2.0.Final" scope="provided"/>
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam" version="2.3.0.CR1" scope="compile">
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam" version="2.3.0.Final-SNAPSHOT" scope="compile">
<exclusion groupId="org.testng" artifactId="testng"/>
<exclusion groupId="junit" artifactId="junit"/>
</dependency>
Modified: branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-ejb/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-ejb/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -5,7 +5,7 @@
<parent>
<artifactId>dvdstore</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-tests/build.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-tests/build.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-tests/build.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -67,14 +67,14 @@
<exclusion groupId="hsqldb" artifactId="hsqldb"/>
<exclusion groupId="org.jboss.logging" artifactId="jboss-logging"/>
</dependency>
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam" scope="compile" version="2.3.0.CR1"/>
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam" scope="compile" version="2.3.0.Final-SNAPSHOT"/>
<dependency groupId="org.slf4j" artifactId="slf4j-log4j12" scope="test" version="1.6.1"/>
<dependency groupId="org.hibernate.javax.persistence" artifactId="hibernate-jpa-2.0-api" version="1.0.1.Final"/>
<dependency groupId="org.jboss.spec.javax.faces" artifactId="jboss-jsf-api_2.0_spec" version="1.0.0.Final"/>
<dependency groupId="javax.mail" artifactId="mail" version="1.4"/>
<dependency groupId="org.seleniumhq.selenium" artifactId="selenium-server" version="2.21.0"/>
<dependency groupId="org.seleniumhq.selenium" artifactId="selenium-java" version="2.21.0"/>
- <dependency groupId="org.jboss.seam" artifactId="functional-tests" scope="test" version="2.3.0.CR1"/>
+ <dependency groupId="org.jboss.seam" artifactId="functional-tests" scope="test" version="2.3.0.Final-SNAPSHOT"/>
<dependency groupId="junit" artifactId="junit" scope="test" version="4.8.2"/>
<dependency groupId="org.jboss.arquillian.junit" artifactId="arquillian-junit-container" scope="test"
version="1.0.1.Final"/>
@@ -103,7 +103,7 @@
</dependency>
<dependency groupId="org.beanshell" artifactId="bsh" version="2.0b4" scope="compile"/>
<dependency groupId="org.javassist" artifactId="javassist" version="3.15.0-GA" scope="compile"/>
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam" scope="compile" version="2.3.0.CR1"/>
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam" scope="compile" version="2.3.0.Final-SNAPSHOT"/>
</artifact:dependencies>
<path id="combined.project.classpath">
Modified: branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-tests/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-tests/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>dvdstore</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-web/build.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-web/build.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-web/build.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -42,11 +42,11 @@
</artifact:dependencies>
<artifact:dependencies pathId="project.classpath" filesetId="project.fileset" useScope="runtime">
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam-ui" version="2.3.0.CR1" scope="runtime">
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam-ui" version="2.3.0.Final-SNAPSHOT" scope="runtime">
<exclusion groupId="org.jboss.seam" artifactId="jboss-seam-jul"/>
<exclusion groupId="org.jboss.seam" artifactId="jboss-seam"/>
</dependency>
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam-debug" version="2.3.0.CR1"
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam-debug" version="2.3.0.Final-SNAPSHOT"
scope="compile">
<exclusion groupId="org.jboss.seam" artifactId="jboss-seam"/>
</dependency>
Modified: branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-web/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-web/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>dvdstore</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/dvdstore/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/dvdstore/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/dvdstore/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/Seam_2_3/examples-ee6/excel/excel-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/excel/excel-ear/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/excel/excel-ear/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>excel</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/excel/excel-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/excel/excel-ejb/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/excel/excel-ejb/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>excel</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/excel/excel-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/excel/excel-tests/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/excel/excel-tests/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>excel</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/excel/excel-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/excel/excel-web/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/excel/excel-web/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>excel</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/excel/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/excel/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/excel/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/groovybooking/groovybooking-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/groovybooking/groovybooking-tests/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/groovybooking/groovybooking-tests/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -6,7 +6,7 @@
<parent>
<artifactId>groovybooking</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/groovybooking/groovybooking-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/groovybooking/groovybooking-web/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/groovybooking/groovybooking-web/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -6,7 +6,7 @@
<parent>
<artifactId>groovybooking</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/groovybooking/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/groovybooking/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/groovybooking/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
</parent>
<packaging>pom</packaging>
<name>Groovy Booking Example (EE6)</name>
Modified: branches/community/Seam_2_3/examples-ee6/guice/guice-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/guice/guice-ear/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/guice/guice-ear/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>guice</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/guice/guice-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/guice/guice-ejb/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/guice/guice-ejb/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>guice</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/guice/guice-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/guice/guice-tests/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/guice/guice-tests/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -7,7 +7,7 @@
<parent>
<artifactId>guice</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/guice/guice-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/guice/guice-web/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/guice/guice-web/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -5,7 +5,7 @@
<parent>
<artifactId>guice</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/guice/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/guice/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/guice/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/Seam_2_3/examples-ee6/hibernate/hibernate-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/hibernate/hibernate-tests/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/hibernate/hibernate-tests/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -7,7 +7,7 @@
<parent>
<artifactId>hibernate</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/hibernate/hibernate-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/hibernate/hibernate-web/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/hibernate/hibernate-web/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -6,7 +6,7 @@
<parent>
<artifactId>hibernate</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/hibernate/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/hibernate/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/hibernate/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-ear/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-ear/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>icefaces</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-ejb/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-ejb/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -5,7 +5,7 @@
<parent>
<artifactId>icefaces</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-tests/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-tests/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>icefaces</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-web/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-web/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -5,7 +5,7 @@
<parent>
<artifactId>icefaces</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/icefaces/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/icefaces/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/icefaces/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/Seam_2_3/examples-ee6/itext/itext-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/itext/itext-ear/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/itext/itext-ear/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>itext</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/itext/itext-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/itext/itext-ejb/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/itext/itext-ejb/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>itext</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/itext/itext-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/itext/itext-tests/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/itext/itext-tests/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>itext</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/itext/itext-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/itext/itext-web/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/itext/itext-web/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>itext</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/itext/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/itext/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/itext/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/Seam_2_3/examples-ee6/jee6/jee6-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/jee6/jee6-tests/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/jee6/jee6-tests/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>jee6</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/jee6/jee6-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/jee6/jee6-web/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/jee6/jee6-web/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>jee6</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/jee6/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/jee6/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/jee6/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<packaging>pom</packaging>
Modified: branches/community/Seam_2_3/examples-ee6/jpa/jpa-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/jpa/jpa-tests/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/jpa/jpa-tests/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -5,7 +5,7 @@
<parent>
<artifactId>jpa</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/jpa/jpa-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/jpa/jpa-web/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/jpa/jpa-web/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>jpa</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/jpa/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/jpa/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/jpa/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
</parent>
<packaging>pom</packaging>
<name>JPA Example (EE6)</name>
Modified: branches/community/Seam_2_3/examples-ee6/mail/mail-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/mail/mail-ear/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/mail/mail-ear/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>mail</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/mail/mail-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/mail/mail-ejb/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/mail/mail-ejb/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>mail</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/mail/mail-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/mail/mail-tests/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/mail/mail-tests/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>mail</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/mail/mail-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/mail/mail-web/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/mail/mail-web/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>mail</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/mail/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/mail/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/mail/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<packaging>pom</packaging>
Modified: branches/community/Seam_2_3/examples-ee6/messages/messages-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/messages/messages-ear/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/messages/messages-ear/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>messages</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/messages/messages-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/messages/messages-ejb/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/messages/messages-ejb/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>messages</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/messages/messages-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/messages/messages-tests/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/messages/messages-tests/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>messages</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/messages/messages-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/messages/messages-web/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/messages/messages-web/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>messages</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/messages/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/messages/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/messages/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-ear/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-ear/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.seam.examples-ee6.metawidget</groupId>
<artifactId>booking</artifactId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-ejb/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-ejb/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>booking</artifactId>
<groupId>org.jboss.seam.examples-ee6.metawidget</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-tests/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-tests/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>booking</artifactId>
<groupId>org.jboss.seam.examples-ee6.metawidget</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-web/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-web/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>booking</artifactId>
<groupId>org.jboss.seam.examples-ee6.metawidget</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/metawidget/booking/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/metawidget/booking/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/metawidget/booking/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<packaging>pom</packaging>
Modified: branches/community/Seam_2_3/examples-ee6/metawidget/groovybooking/groovybooking-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/metawidget/groovybooking/groovybooking-tests/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/metawidget/groovybooking/groovybooking-tests/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -5,7 +5,7 @@
<parent>
<artifactId>groovybooking</artifactId>
<groupId>org.jboss.seam.examples-ee6.metawidget</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/metawidget/groovybooking/groovybooking-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/metawidget/groovybooking/groovybooking-web/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/metawidget/groovybooking/groovybooking-web/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>groovybooking</artifactId>
<groupId>org.jboss.seam.examples-ee6.metawidget</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/metawidget/groovybooking/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/metawidget/groovybooking/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/metawidget/groovybooking/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<packaging>pom</packaging>
Modified: branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-ear/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-ear/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>nestedbooking</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-ejb/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-ejb/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>nestedbooking</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-tests/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-tests/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>nestedbooking</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-web/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-web/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>nestedbooking</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/nestedbooking/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/nestedbooking/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/nestedbooking/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
</parent>
<packaging>pom</packaging>
<name>Nested Booking Example (EE6)</name>
Modified: branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-ear/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-ear/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -5,7 +5,7 @@
<parent>
<artifactId>numberguess</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-ejb/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-ejb/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -5,7 +5,7 @@
<parent>
<artifactId>numberguess</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-tests/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-tests/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -5,7 +5,7 @@
<parent>
<artifactId>numberguess</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-web/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-web/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -5,7 +5,7 @@
<parent>
<artifactId>numberguess</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/numberguess/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/numberguess/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/numberguess/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
</parent>
<packaging>pom</packaging>
<name>Numberguess Example (EE6)</name>
Modified: branches/community/Seam_2_3/examples-ee6/openid/openid-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/openid/openid-ear/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/openid/openid-ear/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>openid</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/openid/openid-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/openid/openid-ejb/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/openid/openid-ejb/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>openid</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/openid/openid-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/openid/openid-tests/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/openid/openid-tests/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>openid</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/openid/openid-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/openid/openid-web/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/openid/openid-web/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>openid</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/openid/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/openid/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/openid/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/Seam_2_3/examples-ee6/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Seam 2 EE 6 examples</name>
Modified: branches/community/Seam_2_3/examples-ee6/quartz/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/quartz/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/quartz/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
</parent>
<packaging>pom</packaging>
<name>Quartz Example (EE6)</name>
Modified: branches/community/Seam_2_3/examples-ee6/quartz/quartz-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/quartz/quartz-ear/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/quartz/quartz-ear/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>quartz</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/quartz/quartz-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/quartz/quartz-ejb/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/quartz/quartz-ejb/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>quartz</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/quartz/quartz-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/quartz/quartz-tests/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/quartz/quartz-tests/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>quartz</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/quartz/quartz-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/quartz/quartz-web/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/quartz/quartz-web/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>quartz</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/registration/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/registration/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/registration/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/Seam_2_3/examples-ee6/registration/registration-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/registration/registration-ear/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/registration/registration-ear/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>registration</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/registration/registration-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/registration/registration-ejb/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/registration/registration-ejb/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>registration</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/registration/registration-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/registration/registration-tests/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/registration/registration-tests/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>registration</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/registration/registration-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/registration/registration-web/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/registration/registration-web/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>registration</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/remoting/chatroom/chatroom-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/remoting/chatroom/chatroom-ear/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/remoting/chatroom/chatroom-ear/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>chatroom</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/remoting/chatroom/chatroom-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/remoting/chatroom/chatroom-ejb/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/remoting/chatroom/chatroom-ejb/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>chatroom</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/remoting/chatroom/chatroom-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/remoting/chatroom/chatroom-tests/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/remoting/chatroom/chatroom-tests/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>chatroom</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/remoting/chatroom/chatroom-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/remoting/chatroom/chatroom-web/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/remoting/chatroom/chatroom-web/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>chatroom</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/remoting/chatroom/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/remoting/chatroom/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/remoting/chatroom/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/remoting/gwt/gwt-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/remoting/gwt/gwt-ear/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/remoting/gwt/gwt-ear/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>gwt</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/remoting/gwt/gwt-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/remoting/gwt/gwt-ejb/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/remoting/gwt/gwt-ejb/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>gwt</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/remoting/gwt/gwt-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/remoting/gwt/gwt-tests/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/remoting/gwt/gwt-tests/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>gwt</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/remoting/gwt/gwt-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/remoting/gwt/gwt-web/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/remoting/gwt/gwt-web/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>gwt</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/remoting/gwt/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/remoting/gwt/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/remoting/gwt/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/remoting/helloworld/helloworld-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/remoting/helloworld/helloworld-ear/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/remoting/helloworld/helloworld-ear/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>helloworld</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/remoting/helloworld/helloworld-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/remoting/helloworld/helloworld-ejb/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/remoting/helloworld/helloworld-ejb/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>helloworld</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/remoting/helloworld/helloworld-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/remoting/helloworld/helloworld-tests/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/remoting/helloworld/helloworld-tests/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>helloworld</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/remoting/helloworld/helloworld-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/remoting/helloworld/helloworld-web/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/remoting/helloworld/helloworld-web/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>helloworld</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/remoting/helloworld/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/remoting/helloworld/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/remoting/helloworld/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/remoting/progressbar/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/remoting/progressbar/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/remoting/progressbar/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/remoting/progressbar/progressbar-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/remoting/progressbar/progressbar-ear/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/remoting/progressbar/progressbar-ear/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>progressbar</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/remoting/progressbar/progressbar-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/remoting/progressbar/progressbar-ejb/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/remoting/progressbar/progressbar-ejb/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>progressbar</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/remoting/progressbar/progressbar-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/remoting/progressbar/progressbar-web/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/remoting/progressbar/progressbar-web/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>progressbar</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/restbay/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/restbay/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/restbay/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
</parent>
<packaging>pom</packaging>
<name>Restbay Example (EE6)</name>
Modified: branches/community/Seam_2_3/examples-ee6/restbay/restbay-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/restbay/restbay-ear/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/restbay/restbay-ear/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>restbay</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/restbay/restbay-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/restbay/restbay-ejb/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/restbay/restbay-ejb/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>restbay</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/restbay/restbay-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/restbay/restbay-tests/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/restbay/restbay-tests/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>restbay</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/restbay/restbay-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/restbay/restbay-web/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/restbay/restbay-web/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>restbay</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/rss/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/rss/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/rss/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/Seam_2_3/examples-ee6/rss/rss-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/rss/rss-ear/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/rss/rss-ear/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>rss</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/rss/rss-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/rss/rss-ejb/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/rss/rss-ejb/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>rss</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/rss/rss-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/rss/rss-tests/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/rss/rss-tests/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>rss</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/rss/rss-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/rss/rss-web/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/rss/rss-web/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>rss</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/seambay/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seambay/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/seambay/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
</parent>
<packaging>pom</packaging>
<name>Seambay Example (EE6)</name>
Modified: branches/community/Seam_2_3/examples-ee6/seambay/seambay-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seambay/seambay-ear/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/seambay/seambay-ear/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seambay</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/seambay/seambay-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seambay/seambay-ejb/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/seambay/seambay-ejb/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seambay</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/seambay/seambay-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seambay/seambay-tests/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/seambay/seambay-tests/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seambay</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/seambay/seambay-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seambay/seambay-web/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/seambay/seambay-web/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seambay</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/seamdiscs/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seamdiscs/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/seamdiscs/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
</parent>
<packaging>pom</packaging>
<name>Seamdiscs Example</name>
Modified: branches/community/Seam_2_3/examples-ee6/seamdiscs/seamdiscs-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seamdiscs/seamdiscs-ear/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/seamdiscs/seamdiscs-ear/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamdiscs</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/seamdiscs/seamdiscs-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seamdiscs/seamdiscs-ejb/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/seamdiscs/seamdiscs-ejb/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamdiscs</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/seamdiscs/seamdiscs-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seamdiscs/seamdiscs-tests/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/seamdiscs/seamdiscs-tests/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamdiscs</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/seamdiscs/seamdiscs-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seamdiscs/seamdiscs-web/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/seamdiscs/seamdiscs-web/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamdiscs</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/seampay/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seampay/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/seampay/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
</parent>
<packaging>pom</packaging>
<name>Seampay Example (EE6)</name>
Modified: branches/community/Seam_2_3/examples-ee6/seampay/seampay-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seampay/seampay-ear/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/seampay/seampay-ear/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seampay</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/seampay/seampay-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seampay/seampay-ejb/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/seampay/seampay-ejb/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seampay</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/seampay/seampay-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seampay/seampay-tests/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/seampay/seampay-tests/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seampay</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/seampay/seampay-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seampay/seampay-web/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/seampay/seampay-web/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seampay</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/seamspace/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seamspace/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/seamspace/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
</parent>
<packaging>pom</packaging>
<name>SeamSpace Example (EE6)</name>
Modified: branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-ear/build.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-ear/build.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-ear/build.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -40,7 +40,7 @@
<artifact:dependencies pathId="project.classpath" filesetId="project.fileset">
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam" version="2.3.0.CR1" scope="compile">
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam" version="2.3.0.Final-SNAPSHOT" scope="compile">
<exclusion groupId="org.testng" artifactId="testng"/>
<exclusion groupId="junit" artifactId="junit"/>
<exclusion groupId="org.jboss.spec.javax.faces" artifactId="jboss-jsf-api_2.0_spec"/>
@@ -65,7 +65,7 @@
<dependency groupId="org.hibernate" artifactId="hibernate-validator" version="4.2.0.Final" scope="provided"/>
<dependency groupId="org.hibernate.javax.persistence" artifactId="hibernate-jpa-2.0-api" version="1.0.1.Final"
scope="provided"/>
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam" version="2.3.0.CR1" scope="compile">
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam" version="2.3.0.Final-SNAPSHOT" scope="compile">
<exclusion groupId="org.testng" artifactId="testng"/>
<exclusion groupId="junit" artifactId="junit"/>
<exclusion groupId="org.jboss.spec.javax.faces" artifactId="jboss-jsf-api_2.0_spec"/>
Modified: branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-ear/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-ear/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamspace</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-ejb/build.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-ejb/build.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-ejb/build.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -45,7 +45,7 @@
<dependency groupId="org.hibernate" artifactId="hibernate-validator" version="4.2.0.Final" scope="provided"/>
<dependency groupId="org.hibernate.javax.persistence" artifactId="hibernate-jpa-2.0-api" version="1.0.1.Final"
scope="provided"/>
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam" version="2.3.0.CR1" scope="compile">
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam" version="2.3.0.Final-SNAPSHOT" scope="compile">
<exclusion groupId="org.testng" artifactId="testng"/>
<exclusion groupId="junit" artifactId="junit"/>
<exclusion groupId="org.jboss.spec.javax.faces" artifactId="jboss-jsf-api_2.0_spec"/>
Modified: branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-ejb/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-ejb/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamspace</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-tests/build.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-tests/build.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-tests/build.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -46,14 +46,14 @@
</artifact:dependencies>
<artifact:dependencies pathId="project.classpath" filesetId="project.fileset">
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam" scope="test" version="2.3.0.CR1"/>
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam" scope="test" version="2.3.0.Final-SNAPSHOT"/>
<dependency groupId="org.slf4j" artifactId="slf4j-log4j12" scope="test" version="1.6.1"/>
<dependency groupId="org.hibernate.javax.persistence" scope="test" artifactId="hibernate-jpa-2.0-api" version="1.0.1.Final"/>
<dependency groupId="org.jboss.spec.javax.faces" scope="test" artifactId="jboss-jsf-api_2.0_spec" version="1.0.0.Final"/>
<dependency groupId="javax.mail" artifactId="mail" version="1.4"/>
<dependency groupId="org.seleniumhq.selenium" artifactId="selenium-server" version="2.21.0"/>
<dependency groupId="org.seleniumhq.selenium" artifactId="selenium-java" version="2.21.0"/>
- <dependency groupId="org.jboss.seam" artifactId="functional-tests" scope="test" version="2.3.0.CR1"/>
+ <dependency groupId="org.jboss.seam" artifactId="functional-tests" scope="test" version="2.3.0.Final-SNAPSHOT"/>
<dependency groupId="junit" artifactId="junit" scope="test" version="4.8.2"/>
<dependency groupId="org.jboss.arquillian.junit" artifactId="arquillian-junit-container" scope="test"
version="1.0.1.Final"/>
Modified: branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-tests/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-tests/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamspace</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-web/build.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-web/build.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-web/build.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -42,11 +42,11 @@
</artifact:dependencies>
<artifact:dependencies pathId="project.classpath" filesetId="project.fileset" useScope="runtime">
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam-ui" version="2.3.0.CR1" scope="runtime">
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam-ui" version="2.3.0.Final-SNAPSHOT" scope="runtime">
<exclusion groupId="org.jboss.seam" artifactId="jboss-seam-jul"/>
<exclusion groupId="org.jboss.seam" artifactId="jboss-seam"/>
</dependency>
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam-debug" version="2.3.0.CR1"
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam-debug" version="2.3.0.Final-SNAPSHOT"
scope="compile">
<exclusion groupId="org.jboss.seam" artifactId="jboss-seam"/>
</dependency>
Modified: branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-web/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-web/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamspace</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/spring/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/spring/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/spring/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
</parent>
<packaging>pom</packaging>
<name>Spring Example (EE6)</name>
Modified: branches/community/Seam_2_3/examples-ee6/spring/spring-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/spring/spring-tests/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/spring/spring-tests/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>spring</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/spring/spring-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/spring/spring-web/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/spring/spring-web/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>spring</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/tasks/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/tasks/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/tasks/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
</parent>
<packaging>pom</packaging>
<name>Tasks Example (EE6)</name>
Modified: branches/community/Seam_2_3/examples-ee6/tasks/tasks-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/tasks/tasks-ear/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/tasks/tasks-ear/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>tasks</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/tasks/tasks-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/tasks/tasks-ejb/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/tasks/tasks-ejb/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>tasks</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/tasks/tasks-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/tasks/tasks-tests/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/tasks/tasks-tests/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>tasks</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/tasks/tasks-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/tasks/tasks-web/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/tasks/tasks-web/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>tasks</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/todo/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/todo/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/todo/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
</parent>
<packaging>pom</packaging>
Modified: branches/community/Seam_2_3/examples-ee6/todo/todo-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/todo/todo-ear/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/todo/todo-ear/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>todo</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/todo/todo-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/todo/todo-ejb/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/todo/todo-ejb/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>todo</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/todo/todo-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/todo/todo-tests/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/todo/todo-tests/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>todo</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/todo/todo-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/todo/todo-web/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/todo/todo-web/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>todo</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/ui/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/ui/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/ui/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/ui/ui-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/ui/ui-ear/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/ui/ui-ear/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/ui/ui-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/ui/ui-ejb/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/ui/ui-ejb/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/ui/ui-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/ui/ui-tests/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/ui/ui-tests/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/ui/ui-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/ui/ui-web/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/ui/ui-web/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/wicket/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/wicket/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/wicket/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
</parent>
<packaging>pom</packaging>
<name>Wicket Booking Example (EE6)</name>
Modified: branches/community/Seam_2_3/examples-ee6/wicket/wicket-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/wicket/wicket-ear/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/wicket/wicket-ear/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>wicket</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/wicket/wicket-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/wicket/wicket-ejb/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/wicket/wicket-ejb/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>wicket</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/wicket/wicket-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/wicket/wicket-tests/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/wicket/wicket-tests/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>wicket</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/wicket/wicket-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/wicket/wicket-web/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/examples-ee6/wicket/wicket-web/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>wicket</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/functional-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/functional-tests/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/functional-tests/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/jboss-seam/pom.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/jboss-seam/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>jboss-seam-parent</artifactId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/jboss-seam-debug/pom.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-debug/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/jboss-seam-debug/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/Seam_2_3/jboss-seam-excel/pom.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-excel/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/jboss-seam-excel/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/Seam_2_3/jboss-seam-flex/pom.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-flex/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/jboss-seam-flex/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/Seam_2_3/jboss-seam-gen/pom.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-gen/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/jboss-seam-gen/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>jboss-seam-parent</artifactId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/jboss-seam-ioc/pom.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-ioc/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/jboss-seam-ioc/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/Seam_2_3/jboss-seam-jul/pom.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-jul/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/jboss-seam-jul/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -3,7 +3,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/jboss-seam-mail/pom.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-mail/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/jboss-seam-mail/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -3,7 +3,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/jboss-seam-pdf/pom.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-pdf/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/jboss-seam-pdf/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -3,7 +3,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/jboss-seam-remoting/pom.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-remoting/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/jboss-seam-remoting/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/Seam_2_3/jboss-seam-resteasy/pom.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-resteasy/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/jboss-seam-resteasy/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/Seam_2_3/jboss-seam-rss/pom.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-rss/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/jboss-seam-rss/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/Seam_2_3/jboss-seam-ui/pom.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-ui/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/jboss-seam-ui/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>jboss-seam-ui</artifactId>
@@ -44,7 +44,7 @@
<plugin>
<groupId>org.jboss.seam</groupId>
<artifactId>seam-cdk-helper</artifactId>
- <version>1.0-SNAPSHOT</version>
+ <version>1.0</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/Seam_2_3/jboss-seam-wicket/pom.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-wicket/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/jboss-seam-wicket/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -3,7 +3,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/pom.xml
===================================================================
--- branches/community/Seam_2_3/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -10,7 +10,7 @@
<groupId>org.jboss.seam</groupId>
<artifactId>jboss-seam-parent</artifactId>
<name>Seam Parent</name>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<packaging>pom</packaging>
<licenses>
@@ -44,7 +44,7 @@
<pdf.name>${project.artifactId}.pdf</pdf.name>
<!-- Version string properties -->
- <version.seam>2.3.0.CR1</version.seam>
+ <version.seam>2.3.0.Final-SNAPSHOT</version.seam>
<version.arquillian_core>1.0.1.Final</version.arquillian_core>
<version.wicket>1.4.14</version.wicket>
<version.testng>5.14.10</version.testng>
Modified: branches/community/Seam_2_3/seam-cdk-helper/pom.xml
===================================================================
--- branches/community/Seam_2_3/seam-cdk-helper/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/seam-cdk-helper/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -5,7 +5,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/seam-integration-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/seam-integration-tests/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/seam-integration-tests/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -4,7 +4,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/seam-reference-guide/pom.xml
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
+++ branches/community/Seam_2_3/seam-reference-guide/pom.xml 2012-09-03 06:18:28 UTC (rev 15105)
@@ -3,7 +3,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1</version>
+ <version>2.3.0.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
12 years, 2 months
Seam SVN: r15104 - tags/JBoss_Seam_2_3_0_CR1/jboss-seam-ui.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-09-02 11:59:50 -0400 (Sun, 02 Sep 2012)
New Revision: 15104
Modified:
tags/JBoss_Seam_2_3_0_CR1/jboss-seam-ui/pom.xml
Log:
oops, wrong snapshot plugin version
Modified: tags/JBoss_Seam_2_3_0_CR1/jboss-seam-ui/pom.xml
===================================================================
--- tags/JBoss_Seam_2_3_0_CR1/jboss-seam-ui/pom.xml 2012-09-02 11:41:08 UTC (rev 15103)
+++ tags/JBoss_Seam_2_3_0_CR1/jboss-seam-ui/pom.xml 2012-09-02 15:59:50 UTC (rev 15104)
@@ -44,7 +44,7 @@
<plugin>
<groupId>org.jboss.seam</groupId>
<artifactId>seam-cdk-helper</artifactId>
- <version>1.0-SNAPSHOT</version>
+ <version>1.0</version>
<executions>
<execution>
<phase>generate-sources</phase>
12 years, 2 months
Seam SVN: r15103 - tags.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-09-02 07:41:08 -0400 (Sun, 02 Sep 2012)
New Revision: 15103
Added:
tags/JBoss_Seam_2_3_0_CR1/
Log:
created 2.3.0.CR1 tag
12 years, 2 months
Seam SVN: r15102 - in branches/community/Seam_2_3: examples-ee6/booking/booking-ear and 11 other directories.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-09-02 07:33:02 -0400 (Sun, 02 Sep 2012)
New Revision: 15102
Modified:
branches/community/Seam_2_3/build/common.build.xml
branches/community/Seam_2_3/examples-ee6/booking/booking-ear/build.xml
branches/community/Seam_2_3/examples-ee6/booking/booking-ejb/build.xml
branches/community/Seam_2_3/examples-ee6/booking/booking-tests/build.xml
branches/community/Seam_2_3/examples-ee6/booking/booking-web/build.xml
branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-ear/build.xml
branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-ejb/build.xml
branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-tests/build.xml
branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-web/build.xml
branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-ear/build.xml
branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-ejb/build.xml
branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-tests/build.xml
branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-web/build.xml
Log:
changed version in ant scripts too
Modified: branches/community/Seam_2_3/build/common.build.xml
===================================================================
--- branches/community/Seam_2_3/build/common.build.xml 2012-09-02 10:16:30 UTC (rev 15101)
+++ branches/community/Seam_2_3/build/common.build.xml 2012-09-02 11:33:02 UTC (rev 15102)
@@ -47,7 +47,7 @@
<!-- User set properties, order of this and default properties is important! -->
<property file="${seam.dir}/build.properties" />
- <property name="complete.version" value="2.3.0.CR1-SNAPSHOT" />
+ <property name="complete.version" value="2.3.0.CR1" />
<condition property="mavenized.property">
<not>
Modified: branches/community/Seam_2_3/examples-ee6/booking/booking-ear/build.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/booking/booking-ear/build.xml 2012-09-02 10:16:30 UTC (rev 15101)
+++ branches/community/Seam_2_3/examples-ee6/booking/booking-ear/build.xml 2012-09-02 11:33:02 UTC (rev 15102)
@@ -40,7 +40,7 @@
<artifact:dependencies pathId="project.classpath" filesetId="project.fileset">
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam" version="2.3.0.CR1-SNAPSHOT" scope="compile">
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam" version="2.3.0.CR1" scope="compile">
<exclusion groupId="org.testng" artifactId="testng"/>
<exclusion groupId="junit" artifactId="junit"/>
<exclusion groupId="org.jboss.spec.javax.faces" artifactId="jboss-jsf-api_2.0_spec"/>
Modified: branches/community/Seam_2_3/examples-ee6/booking/booking-ejb/build.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/booking/booking-ejb/build.xml 2012-09-02 10:16:30 UTC (rev 15101)
+++ branches/community/Seam_2_3/examples-ee6/booking/booking-ejb/build.xml 2012-09-02 11:33:02 UTC (rev 15102)
@@ -55,7 +55,7 @@
<dependency groupId="org.javassist" artifactId="javassist" version="3.15.0-GA" scope="provided"/>
<dependency groupId="org.jboss.el" artifactId="jboss-el" version="1.0_02.CR6" scope="compile"/>
<dependency groupId="org.jboss.logging" artifactId="jboss-logging" version="3.1.0.CR2" scope="provided"/>
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam" version="2.3.0.CR1-SNAPSHOT" scope="compile">
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam" version="2.3.0.CR1" scope="compile">
<exclusion groupId="org.testng" artifactId="testng"/>
<exclusion groupId="junit" artifactId="junit"/>
<exclusion groupId="org.jboss.spec.javax.faces" artifactId="jboss-jsf-api_2.0_spec"/>
Modified: branches/community/Seam_2_3/examples-ee6/booking/booking-tests/build.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/booking/booking-tests/build.xml 2012-09-02 10:16:30 UTC (rev 15101)
+++ branches/community/Seam_2_3/examples-ee6/booking/booking-tests/build.xml 2012-09-02 11:33:02 UTC (rev 15102)
@@ -42,14 +42,14 @@
</artifact:dependencies>
<artifact:dependencies pathId="project.classpath">
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam" scope="test" version="2.3.0.CR1-SNAPSHOT"/>
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam" scope="test" version="2.3.0.CR1"/>
<dependency groupId="org.slf4j" artifactId="slf4j-log4j12" scope="test" version="1.6.1"/>
<dependency groupId="org.hibernate.javax.persistence" artifactId="hibernate-jpa-2.0-api" version="1.0.1.Final"/>
<dependency groupId="org.jboss.spec.javax.faces" artifactId="jboss-jsf-api_2.0_spec" version="1.0.0.Final"/>
<dependency groupId="javax.mail" artifactId="mail" version="1.4"/>
<dependency groupId="org.seleniumhq.selenium" artifactId="selenium-server" version="2.21.0"/>
<dependency groupId="org.seleniumhq.selenium" artifactId="selenium-java" version="2.21.0"/>
- <dependency groupId="org.jboss.seam" artifactId="functional-tests" scope="test" version="2.3.0.CR1-SNAPSHOT"/>
+ <dependency groupId="org.jboss.seam" artifactId="functional-tests" scope="test" version="2.3.0.CR1"/>
<dependency groupId="junit" artifactId="junit" scope="test" version="4.8.2"/>
<dependency groupId="org.jboss.arquillian.junit" artifactId="arquillian-junit-container" scope="test"
version="1.0.1.Final"/>
Modified: branches/community/Seam_2_3/examples-ee6/booking/booking-web/build.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/booking/booking-web/build.xml 2012-09-02 10:16:30 UTC (rev 15101)
+++ branches/community/Seam_2_3/examples-ee6/booking/booking-web/build.xml 2012-09-02 11:33:02 UTC (rev 15102)
@@ -42,11 +42,11 @@
</artifact:dependencies>
<artifact:dependencies pathId="project.classpath" filesetId="project.fileset" useScope="runtime">
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam-ui" version="2.3.0.CR1-SNAPSHOT" scope="runtime">
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam-ui" version="2.3.0.CR1" scope="runtime">
<exclusion groupId="org.jboss.seam" artifactId="jboss-seam-jul"/>
<exclusion groupId="org.jboss.seam" artifactId="jboss-seam"/>
</dependency>
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam-debug" version="2.3.0.CR1-SNAPSHOT"
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam-debug" version="2.3.0.CR1"
scope="compile">
<exclusion groupId="org.jboss.seam" artifactId="jboss-seam"/>
</dependency>
Modified: branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-ear/build.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-ear/build.xml 2012-09-02 10:16:30 UTC (rev 15101)
+++ branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-ear/build.xml 2012-09-02 11:33:02 UTC (rev 15102)
@@ -40,7 +40,7 @@
<artifact:dependencies pathId="project.classpath" filesetId="project.fileset">
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam" version="2.3.0.CR1-SNAPSHOT" scope="compile">
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam" version="2.3.0.CR1" scope="compile">
<exclusion groupId="org.testng" artifactId="testng"/>
<exclusion groupId="junit" artifactId="junit"/>
<exclusion groupId="org.jboss.spec.javax.faces" artifactId="jboss-jsf-api_2.0_spec"/>
Modified: branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-ejb/build.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-ejb/build.xml 2012-09-02 10:16:30 UTC (rev 15101)
+++ branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-ejb/build.xml 2012-09-02 11:33:02 UTC (rev 15102)
@@ -44,7 +44,7 @@
scope="provided"/>
<dependency groupId="org.hibernate" artifactId="hibernate-validator" version="4.2.0.Final" scope="provided"/>
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam" version="2.3.0.CR1-SNAPSHOT" scope="compile">
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam" version="2.3.0.CR1" scope="compile">
<exclusion groupId="org.testng" artifactId="testng"/>
<exclusion groupId="junit" artifactId="junit"/>
</dependency>
Modified: branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-tests/build.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-tests/build.xml 2012-09-02 10:16:30 UTC (rev 15101)
+++ branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-tests/build.xml 2012-09-02 11:33:02 UTC (rev 15102)
@@ -67,14 +67,14 @@
<exclusion groupId="hsqldb" artifactId="hsqldb"/>
<exclusion groupId="org.jboss.logging" artifactId="jboss-logging"/>
</dependency>
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam" scope="compile" version="2.3.0.CR1-SNAPSHOT"/>
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam" scope="compile" version="2.3.0.CR1"/>
<dependency groupId="org.slf4j" artifactId="slf4j-log4j12" scope="test" version="1.6.1"/>
<dependency groupId="org.hibernate.javax.persistence" artifactId="hibernate-jpa-2.0-api" version="1.0.1.Final"/>
<dependency groupId="org.jboss.spec.javax.faces" artifactId="jboss-jsf-api_2.0_spec" version="1.0.0.Final"/>
<dependency groupId="javax.mail" artifactId="mail" version="1.4"/>
<dependency groupId="org.seleniumhq.selenium" artifactId="selenium-server" version="2.21.0"/>
<dependency groupId="org.seleniumhq.selenium" artifactId="selenium-java" version="2.21.0"/>
- <dependency groupId="org.jboss.seam" artifactId="functional-tests" scope="test" version="2.3.0.CR1-SNAPSHOT"/>
+ <dependency groupId="org.jboss.seam" artifactId="functional-tests" scope="test" version="2.3.0.CR1"/>
<dependency groupId="junit" artifactId="junit" scope="test" version="4.8.2"/>
<dependency groupId="org.jboss.arquillian.junit" artifactId="arquillian-junit-container" scope="test"
version="1.0.1.Final"/>
@@ -103,7 +103,7 @@
</dependency>
<dependency groupId="org.beanshell" artifactId="bsh" version="2.0b4" scope="compile"/>
<dependency groupId="org.javassist" artifactId="javassist" version="3.15.0-GA" scope="compile"/>
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam" scope="compile" version="2.3.0.CR1-SNAPSHOT"/>
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam" scope="compile" version="2.3.0.CR1"/>
</artifact:dependencies>
<path id="combined.project.classpath">
Modified: branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-web/build.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-web/build.xml 2012-09-02 10:16:30 UTC (rev 15101)
+++ branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-web/build.xml 2012-09-02 11:33:02 UTC (rev 15102)
@@ -42,11 +42,11 @@
</artifact:dependencies>
<artifact:dependencies pathId="project.classpath" filesetId="project.fileset" useScope="runtime">
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam-ui" version="2.3.0.CR1-SNAPSHOT" scope="runtime">
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam-ui" version="2.3.0.CR1" scope="runtime">
<exclusion groupId="org.jboss.seam" artifactId="jboss-seam-jul"/>
<exclusion groupId="org.jboss.seam" artifactId="jboss-seam"/>
</dependency>
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam-debug" version="2.3.0.CR1-SNAPSHOT"
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam-debug" version="2.3.0.CR1"
scope="compile">
<exclusion groupId="org.jboss.seam" artifactId="jboss-seam"/>
</dependency>
Modified: branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-ear/build.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-ear/build.xml 2012-09-02 10:16:30 UTC (rev 15101)
+++ branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-ear/build.xml 2012-09-02 11:33:02 UTC (rev 15102)
@@ -40,7 +40,7 @@
<artifact:dependencies pathId="project.classpath" filesetId="project.fileset">
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam" version="2.3.0.CR1-SNAPSHOT" scope="compile">
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam" version="2.3.0.CR1" scope="compile">
<exclusion groupId="org.testng" artifactId="testng"/>
<exclusion groupId="junit" artifactId="junit"/>
<exclusion groupId="org.jboss.spec.javax.faces" artifactId="jboss-jsf-api_2.0_spec"/>
@@ -65,7 +65,7 @@
<dependency groupId="org.hibernate" artifactId="hibernate-validator" version="4.2.0.Final" scope="provided"/>
<dependency groupId="org.hibernate.javax.persistence" artifactId="hibernate-jpa-2.0-api" version="1.0.1.Final"
scope="provided"/>
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam" version="2.3.0.CR1-SNAPSHOT" scope="compile">
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam" version="2.3.0.CR1" scope="compile">
<exclusion groupId="org.testng" artifactId="testng"/>
<exclusion groupId="junit" artifactId="junit"/>
<exclusion groupId="org.jboss.spec.javax.faces" artifactId="jboss-jsf-api_2.0_spec"/>
Modified: branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-ejb/build.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-ejb/build.xml 2012-09-02 10:16:30 UTC (rev 15101)
+++ branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-ejb/build.xml 2012-09-02 11:33:02 UTC (rev 15102)
@@ -45,7 +45,7 @@
<dependency groupId="org.hibernate" artifactId="hibernate-validator" version="4.2.0.Final" scope="provided"/>
<dependency groupId="org.hibernate.javax.persistence" artifactId="hibernate-jpa-2.0-api" version="1.0.1.Final"
scope="provided"/>
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam" version="2.3.0.CR1-SNAPSHOT" scope="compile">
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam" version="2.3.0.CR1" scope="compile">
<exclusion groupId="org.testng" artifactId="testng"/>
<exclusion groupId="junit" artifactId="junit"/>
<exclusion groupId="org.jboss.spec.javax.faces" artifactId="jboss-jsf-api_2.0_spec"/>
Modified: branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-tests/build.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-tests/build.xml 2012-09-02 10:16:30 UTC (rev 15101)
+++ branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-tests/build.xml 2012-09-02 11:33:02 UTC (rev 15102)
@@ -46,14 +46,14 @@
</artifact:dependencies>
<artifact:dependencies pathId="project.classpath" filesetId="project.fileset">
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam" scope="test" version="2.3.0.CR1-SNAPSHOT"/>
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam" scope="test" version="2.3.0.CR1"/>
<dependency groupId="org.slf4j" artifactId="slf4j-log4j12" scope="test" version="1.6.1"/>
<dependency groupId="org.hibernate.javax.persistence" scope="test" artifactId="hibernate-jpa-2.0-api" version="1.0.1.Final"/>
<dependency groupId="org.jboss.spec.javax.faces" scope="test" artifactId="jboss-jsf-api_2.0_spec" version="1.0.0.Final"/>
<dependency groupId="javax.mail" artifactId="mail" version="1.4"/>
<dependency groupId="org.seleniumhq.selenium" artifactId="selenium-server" version="2.21.0"/>
<dependency groupId="org.seleniumhq.selenium" artifactId="selenium-java" version="2.21.0"/>
- <dependency groupId="org.jboss.seam" artifactId="functional-tests" scope="test" version="2.3.0.CR1-SNAPSHOT"/>
+ <dependency groupId="org.jboss.seam" artifactId="functional-tests" scope="test" version="2.3.0.CR1"/>
<dependency groupId="junit" artifactId="junit" scope="test" version="4.8.2"/>
<dependency groupId="org.jboss.arquillian.junit" artifactId="arquillian-junit-container" scope="test"
version="1.0.1.Final"/>
Modified: branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-web/build.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-web/build.xml 2012-09-02 10:16:30 UTC (rev 15101)
+++ branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-web/build.xml 2012-09-02 11:33:02 UTC (rev 15102)
@@ -42,11 +42,11 @@
</artifact:dependencies>
<artifact:dependencies pathId="project.classpath" filesetId="project.fileset" useScope="runtime">
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam-ui" version="2.3.0.CR1-SNAPSHOT" scope="runtime">
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam-ui" version="2.3.0.CR1" scope="runtime">
<exclusion groupId="org.jboss.seam" artifactId="jboss-seam-jul"/>
<exclusion groupId="org.jboss.seam" artifactId="jboss-seam"/>
</dependency>
- <dependency groupId="org.jboss.seam" artifactId="jboss-seam-debug" version="2.3.0.CR1-SNAPSHOT"
+ <dependency groupId="org.jboss.seam" artifactId="jboss-seam-debug" version="2.3.0.CR1"
scope="compile">
<exclusion groupId="org.jboss.seam" artifactId="jboss-seam"/>
</dependency>
12 years, 2 months
Seam SVN: r15101 - in branches/community/Seam_2_3: bom and 193 other directories.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-09-02 06:16:30 -0400 (Sun, 02 Sep 2012)
New Revision: 15101
Modified:
branches/community/Seam_2_3/bom/pom.xml
branches/community/Seam_2_3/distribution/pom.xml
branches/community/Seam_2_3/distribution/src/main/assembly/changelog.txt
branches/community/Seam_2_3/distribution/src/main/assembly/readme.txt
branches/community/Seam_2_3/examples-ee6/blog/blog-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/blog/blog-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/blog/blog-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/blog/blog-web/pom.xml
branches/community/Seam_2_3/examples-ee6/blog/pom.xml
branches/community/Seam_2_3/examples-ee6/booking/booking-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/booking/booking-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/booking/booking-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/booking/booking-web/pom.xml
branches/community/Seam_2_3/examples-ee6/booking/pom.xml
branches/community/Seam_2_3/examples-ee6/contactlist/contactlist-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/contactlist/contactlist-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/contactlist/contactlist-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/contactlist/contactlist-web/pom.xml
branches/community/Seam_2_3/examples-ee6/contactlist/pom.xml
branches/community/Seam_2_3/examples-ee6/drools/drools-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/drools/drools-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/drools/drools-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/drools/drools-web/pom.xml
branches/community/Seam_2_3/examples-ee6/drools/pom.xml
branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-web/pom.xml
branches/community/Seam_2_3/examples-ee6/dvdstore/pom.xml
branches/community/Seam_2_3/examples-ee6/excel/excel-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/excel/excel-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/excel/excel-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/excel/excel-web/pom.xml
branches/community/Seam_2_3/examples-ee6/excel/pom.xml
branches/community/Seam_2_3/examples-ee6/groovybooking/groovybooking-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/groovybooking/groovybooking-web/pom.xml
branches/community/Seam_2_3/examples-ee6/groovybooking/pom.xml
branches/community/Seam_2_3/examples-ee6/guice/guice-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/guice/guice-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/guice/guice-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/guice/guice-web/pom.xml
branches/community/Seam_2_3/examples-ee6/guice/pom.xml
branches/community/Seam_2_3/examples-ee6/hibernate/hibernate-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/hibernate/hibernate-web/pom.xml
branches/community/Seam_2_3/examples-ee6/hibernate/pom.xml
branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-web/pom.xml
branches/community/Seam_2_3/examples-ee6/icefaces/pom.xml
branches/community/Seam_2_3/examples-ee6/itext/itext-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/itext/itext-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/itext/itext-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/itext/itext-web/pom.xml
branches/community/Seam_2_3/examples-ee6/itext/pom.xml
branches/community/Seam_2_3/examples-ee6/jee6/jee6-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/jee6/jee6-web/pom.xml
branches/community/Seam_2_3/examples-ee6/jee6/pom.xml
branches/community/Seam_2_3/examples-ee6/jpa/jpa-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/jpa/jpa-web/pom.xml
branches/community/Seam_2_3/examples-ee6/jpa/pom.xml
branches/community/Seam_2_3/examples-ee6/mail/mail-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/mail/mail-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/mail/mail-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/mail/mail-web/pom.xml
branches/community/Seam_2_3/examples-ee6/mail/pom.xml
branches/community/Seam_2_3/examples-ee6/messages/messages-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/messages/messages-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/messages/messages-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/messages/messages-web/pom.xml
branches/community/Seam_2_3/examples-ee6/messages/pom.xml
branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-web/pom.xml
branches/community/Seam_2_3/examples-ee6/metawidget/booking/pom.xml
branches/community/Seam_2_3/examples-ee6/metawidget/groovybooking/groovybooking-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/metawidget/groovybooking/groovybooking-web/pom.xml
branches/community/Seam_2_3/examples-ee6/metawidget/groovybooking/pom.xml
branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-web/pom.xml
branches/community/Seam_2_3/examples-ee6/nestedbooking/pom.xml
branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-web/pom.xml
branches/community/Seam_2_3/examples-ee6/numberguess/pom.xml
branches/community/Seam_2_3/examples-ee6/openid/openid-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/openid/openid-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/openid/openid-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/openid/openid-web/pom.xml
branches/community/Seam_2_3/examples-ee6/openid/pom.xml
branches/community/Seam_2_3/examples-ee6/pom.xml
branches/community/Seam_2_3/examples-ee6/quartz/pom.xml
branches/community/Seam_2_3/examples-ee6/quartz/quartz-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/quartz/quartz-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/quartz/quartz-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/quartz/quartz-web/pom.xml
branches/community/Seam_2_3/examples-ee6/registration/pom.xml
branches/community/Seam_2_3/examples-ee6/registration/registration-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/registration/registration-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/registration/registration-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/registration/registration-web/pom.xml
branches/community/Seam_2_3/examples-ee6/remoting/chatroom/chatroom-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/remoting/chatroom/chatroom-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/remoting/chatroom/chatroom-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/remoting/chatroom/chatroom-web/pom.xml
branches/community/Seam_2_3/examples-ee6/remoting/chatroom/pom.xml
branches/community/Seam_2_3/examples-ee6/remoting/gwt/gwt-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/remoting/gwt/gwt-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/remoting/gwt/gwt-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/remoting/gwt/gwt-web/pom.xml
branches/community/Seam_2_3/examples-ee6/remoting/gwt/pom.xml
branches/community/Seam_2_3/examples-ee6/remoting/helloworld/helloworld-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/remoting/helloworld/helloworld-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/remoting/helloworld/helloworld-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/remoting/helloworld/helloworld-web/pom.xml
branches/community/Seam_2_3/examples-ee6/remoting/helloworld/pom.xml
branches/community/Seam_2_3/examples-ee6/remoting/progressbar/pom.xml
branches/community/Seam_2_3/examples-ee6/remoting/progressbar/progressbar-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/remoting/progressbar/progressbar-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/remoting/progressbar/progressbar-web/pom.xml
branches/community/Seam_2_3/examples-ee6/restbay/pom.xml
branches/community/Seam_2_3/examples-ee6/restbay/restbay-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/restbay/restbay-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/restbay/restbay-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/restbay/restbay-web/pom.xml
branches/community/Seam_2_3/examples-ee6/rss/pom.xml
branches/community/Seam_2_3/examples-ee6/rss/rss-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/rss/rss-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/rss/rss-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/rss/rss-web/pom.xml
branches/community/Seam_2_3/examples-ee6/seambay/pom.xml
branches/community/Seam_2_3/examples-ee6/seambay/seambay-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/seambay/seambay-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/seambay/seambay-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/seambay/seambay-web/pom.xml
branches/community/Seam_2_3/examples-ee6/seamdiscs/pom.xml
branches/community/Seam_2_3/examples-ee6/seamdiscs/seamdiscs-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/seamdiscs/seamdiscs-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/seamdiscs/seamdiscs-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/seamdiscs/seamdiscs-web/pom.xml
branches/community/Seam_2_3/examples-ee6/seampay/pom.xml
branches/community/Seam_2_3/examples-ee6/seampay/seampay-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/seampay/seampay-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/seampay/seampay-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/seampay/seampay-web/pom.xml
branches/community/Seam_2_3/examples-ee6/seamspace/pom.xml
branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-web/pom.xml
branches/community/Seam_2_3/examples-ee6/spring/pom.xml
branches/community/Seam_2_3/examples-ee6/spring/spring-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/spring/spring-web/pom.xml
branches/community/Seam_2_3/examples-ee6/tasks/pom.xml
branches/community/Seam_2_3/examples-ee6/tasks/tasks-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/tasks/tasks-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/tasks/tasks-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/tasks/tasks-web/pom.xml
branches/community/Seam_2_3/examples-ee6/todo/pom.xml
branches/community/Seam_2_3/examples-ee6/todo/todo-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/todo/todo-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/todo/todo-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/todo/todo-web/pom.xml
branches/community/Seam_2_3/examples-ee6/ui/pom.xml
branches/community/Seam_2_3/examples-ee6/ui/ui-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/ui/ui-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/ui/ui-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/ui/ui-web/pom.xml
branches/community/Seam_2_3/examples-ee6/wicket/pom.xml
branches/community/Seam_2_3/examples-ee6/wicket/wicket-ear/pom.xml
branches/community/Seam_2_3/examples-ee6/wicket/wicket-ejb/pom.xml
branches/community/Seam_2_3/examples-ee6/wicket/wicket-tests/pom.xml
branches/community/Seam_2_3/examples-ee6/wicket/wicket-web/pom.xml
branches/community/Seam_2_3/functional-tests/pom.xml
branches/community/Seam_2_3/jboss-seam-debug/pom.xml
branches/community/Seam_2_3/jboss-seam-excel/pom.xml
branches/community/Seam_2_3/jboss-seam-flex/pom.xml
branches/community/Seam_2_3/jboss-seam-gen/pom.xml
branches/community/Seam_2_3/jboss-seam-ioc/pom.xml
branches/community/Seam_2_3/jboss-seam-jul/pom.xml
branches/community/Seam_2_3/jboss-seam-mail/pom.xml
branches/community/Seam_2_3/jboss-seam-pdf/pom.xml
branches/community/Seam_2_3/jboss-seam-remoting/pom.xml
branches/community/Seam_2_3/jboss-seam-resteasy/pom.xml
branches/community/Seam_2_3/jboss-seam-rss/pom.xml
branches/community/Seam_2_3/jboss-seam-ui/pom.xml
branches/community/Seam_2_3/jboss-seam-wicket/pom.xml
branches/community/Seam_2_3/jboss-seam/pom.xml
branches/community/Seam_2_3/pom.xml
branches/community/Seam_2_3/seam-cdk-helper/pom.xml
branches/community/Seam_2_3/seam-integration-tests/pom.xml
branches/community/Seam_2_3/seam-reference-guide/pom.xml
Log:
changed version to 2.3.0.CR1 and updated changelog.txt
Modified: branches/community/Seam_2_3/bom/pom.xml
===================================================================
--- branches/community/Seam_2_3/bom/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/bom/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<groupId>org.jboss.seam</groupId>
<artifactId>bom</artifactId>
<name>Seam 2 Bill Of Materials </name>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<packaging>pom</packaging>
<licenses>
@@ -31,7 +31,7 @@
<properties>
<!-- Version string properties -->
- <version.seam>2.3.0.CR1-SNAPSHOT</version.seam>
+ <version.seam>2.3.0.CR1</version.seam>
<version.wicket>1.4.14</version.wicket>
<version.drools>5.3.3.Final</version.drools>
<version.resteasy>2.0.1.GA</version.resteasy>
Modified: branches/community/Seam_2_3/distribution/pom.xml
===================================================================
--- branches/community/Seam_2_3/distribution/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/distribution/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>jboss-seam-parent</artifactId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/distribution/src/main/assembly/changelog.txt
===================================================================
--- branches/community/Seam_2_3/distribution/src/main/assembly/changelog.txt 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/distribution/src/main/assembly/changelog.txt 2012-09-02 10:16:30 UTC (rev 15101)
@@ -1,6 +1,86 @@
JBoss Seam Changelog
====================
+Release Notes - Seam2 - Version 2.3.0.CR1
+
+** Feature Request
+ * [ JBSEAM-4703 ] Migrate Seam DVDStore to the new Hibernate Search 3.2 APIs
+ * [ JBSEAM-5003 ] Support EJB 3.1 features
+ * [ JBSEAM-5006 ] Warn on @Synchronized SFSB
+
+** Bug
+ * [ JBSEAM-3138 ] precedence doesn't work for the component properties specified in components.xml
+ * [ JBSEAM-4233 ] Asynchronous and Quartz: manual update
+ * [ JBSEAM-4654 ] s:selectItems noSelectionLabel does not generate option value
+ * [ JBSEAM-4863 ] Memory Leak when calling @Destroy (with SFSBs)
+ * [ JBSEAM-4889 ] Improvements to maven-ear-plugin configuration of seam booking 2.3
+ * [ JBSEAM-4899 ] Rendering multiple <p:piechart> using seam-pdf causes the data to overlap
+ * [ JBSEAM-4913 ] org.jboss.seam.test.integration.ConversationTest fails in integration testsuite
+ * [ JBSEAM-4918 ] Cannot deploy Seam project generated in JBDS - other problems
+ * [ JBSEAM-4926 ] openid example fails with "/openid.xhtml Not Found in ExternalContext as a Resource"
+ * [ JBSEAM-4940 ] @CaptchaResponse throws javax.validation exception
+ * [ JBSEAM-4945 ] Seam Drools fails on Java 7 with: value '1.7' is not a valid language level
+ * [ JBSEAM-4955 ] Custom converter tags are not available
+ * [ JBSEAM-4959 ] Seam gen needs to use different default JDBC driver than HSQLDB
+ * [ JBSEAM-4960 ] seam-gen project classpath not updated
+ * [ JBSEAM-4961 ] seam-gen web.xml and view updates
+ * [ JBSEAM-4963 ] seam-gen generating new action - compilation problem
+ * [ JBSEAM-4964 ] seam-gen generating new form - problem
+ * [ JBSEAM-4965 ] java.lang.IllegalArgumentException: Component must be of type org.jboss.seam.ui.component.UICache
+ * [ JBSEAM-4966 ] Factory not called after @Outjecting null value with redirect
+ * [ JBSEAM-4967 ] seam-messages fails with "The absolute uri: http://jboss.com/products/seam/taglib cannot be resolved in either web.xml or the jar files deployed with this application"
+ * [ JBSEAM-4968 ] metawidget example, error handling ViewExpiredException "Exception when handling error trying to reset the response.: javax.faces.application.ViewExpiredException"
+ * [ JBSEAM-4969 ] "One or more resources have the target of 'head', but no 'head' component has been defined within the view." JSF error in the richfaces examples
+ * [ JBSEAM-4970 ] jboss-seam-ui has non-optional compile-scoped dependency on richfaces artifacts
+ * [ JBSEAM-4971 ] Update Seam taglib URI in Seam-gen templates
+ * [ JBSEAM-4972 ] examples -Ptomcat profiles broken
+ * [ JBSEAM-4974 ] Seam-gen uses not supported s:convertDateTime tags
+ * [ JBSEAM-4975 ] Seam-gen generated project entityManager problem
+ * [ JBSEAM-4977 ] Metawidget examples broken, metawidget annotations ignored
+ * [ JBSEAM-4984 ] hibernate search examples search error searching for a stoplist word
+ * [ JBSEAM-4985 ] seamdiscs example, The class 'org.jboss.seam.example.seamdiscs.model.Artist' does not have the property 'bandMembers'."
+ * [ JBSEAM-4986 ] occasional NPE in dvdstore integration tests
+ * [ JBSEAM-4987 ] Seam2.3.0.Beta2 documentation issues
+ * [ JBSEAM-4988 ] revert change of namespace to avoid unnecessary user and tooling changes
+ * [ JBSEAM-4989 ] javax.servlet.ServletException with message: "Component must be of type org.jboss.seam.ui.component.UICache"
+ * [ JBSEAM-4990 ] Wrong usage of commons-logging Logger in MockViewHandler and MockRequestDispatcher
+ * [ JBSEAM-4991 ] Seam-gen view template - Editing in CRUD doesn't work
+ * [ JBSEAM-4993 ] Deadlock between SFSB EJB lock and Component.getInstanceFromFactory factoryLock
+ * [ JBSEAM-4995 ] seam-gen doesn't automatically include jdbc-driver jar to project classpath
+ * [ JBSEAM-4996 ] Seam-gen generated EAR project not working
+ * [ JBSEAM-4997 ] Deadlock with components using factories of each other
+ * [ JBSEAM-4999 ] Images in documentation are missing
+ * [ JBSEAM-5007 ] SeamNavigationHandler should extend ConfigurableNavigationHandler instead
+ * [ JBSEAM-5008 ] Seam 2.3 documentation issues - required updates
+ * [ JBSEAM-5009 ] seamdiscs example Pink Floyd members are listed as Band Members in both Pink Floyd and Fairport Convention on the artists page
+ * [ JBSEAM-5010 ] Documentation, conversations, 7.12.2. Dealing with errors, needs to be updated wrt. RF4
+ * [ JBSEAM-5011 ] Documentation, conversations, 7.12.3. "RichFaces (Ajax4jsf)" needs to be updated wrt. RF4
+ * [ JBSEAM-5012 ] Documentation, events, "6.7. Navigation", remove JSF2 RI Waring
+ * [ JBSEAM-5013 ] Documentation, webservices, "24.1. Configuration and Packaging" webservice configuration must be updated for AS7
+ * [ JBSEAM-5014 ] Groovybooking lost hot deployment feature
+ * [ JBSEAM-5015 ] PrioritizableConverter has a type on @FacesConverter name
+ * [ JBSEAM-5017 ] Seamdiscs filtering by artist name doesn't work properly
+ * [ JBSEAM-5019 ] Icefaces example doesn't deploy
+ * [ JBSEAM-5021 ] Groovybooking example logout not working properly
+
+** Task
+ * [ JBSEAM-4825 ] Migrate XSD/XML validation to maven plugin
+ * [ JBSEAM-4856 ] AS7 Multi-war ear Seam 2.2.2.Final fails deployment (race condition?)
+ * [ JBSEAM-4860 ] Enable AS7 deployment for examples
+ * [ JBSEAM-4867 ] Run Seam 2.3 through the Seam 2 smoke tests
+ * [ JBSEAM-4911 ] Enable PhaseListenerTest unit tests
+ * [ JBSEAM-4912 ] Refactor LocaleTest in integration testsuite
+ * [ JBSEAM-4954 ] Incorrect documentation for Remoting
+ * [ JBSEAM-4957 ] JBoss Tools and M2e-WTP doesn't filter properly properties in files
+ * [ JBSEAM-4973 ] Update schema URIs from http//jboss.com/products/seam/ to http://jboss.org/schema/seam
+ * [ JBSEAM-4981 ] Remove nonused old files from extras directory
+ * [ JBSEAM-4982 ] Update text files in distribution
+ * [ JBSEAM-4983 ] Migrate seamdiscs testsuite
+
+** Patch
+ * [ JBSEAM-4861 ] Component.java uses application wide factoryLock too often
+
+
Release Notes - Seam2 - Version 2.3.0.BETA2
** Sub-task
Modified: branches/community/Seam_2_3/distribution/src/main/assembly/readme.txt
===================================================================
--- branches/community/Seam_2_3/distribution/src/main/assembly/readme.txt 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/distribution/src/main/assembly/readme.txt 2012-09-02 10:16:30 UTC (rev 15101)
@@ -1,7 +1,7 @@
JBoss Seam - Contextual Component framework for Java EE
=========================================================
-version 2.3.0.Beta2, May 2012
+version 2.3.0.CR1, September 2012
This software is distributed under the terms of the FSF Lesser Gnu
Public License (see lgpl.txt).
Modified: branches/community/Seam_2_3/examples-ee6/blog/blog-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/blog/blog-ear/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/blog/blog-ear/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -5,7 +5,7 @@
<parent>
<artifactId>blog</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/blog/blog-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/blog/blog-ejb/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/blog/blog-ejb/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.jboss.seam.examples-ee6</groupId>
<artifactId>blog</artifactId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/blog/blog-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/blog/blog-tests/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/blog/blog-tests/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.jboss.seam.examples-ee6</groupId>
<artifactId>blog</artifactId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/blog/blog-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/blog/blog-web/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/blog/blog-web/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -6,7 +6,7 @@
<parent>
<artifactId>blog</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/blog/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/blog/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/blog/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/Seam_2_3/examples-ee6/booking/booking-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/booking/booking-ear/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/booking/booking-ear/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>booking</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/booking/booking-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/booking/booking-ejb/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/booking/booking-ejb/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>booking</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/booking/booking-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/booking/booking-tests/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/booking/booking-tests/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>booking</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/booking/booking-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/booking/booking-web/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/booking/booking-web/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>booking</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/booking/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/booking/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/booking/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<packaging>pom</packaging>
Modified: branches/community/Seam_2_3/examples-ee6/contactlist/contactlist-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/contactlist/contactlist-ear/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/contactlist/contactlist-ear/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>contactlist</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/contactlist/contactlist-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/contactlist/contactlist-ejb/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/contactlist/contactlist-ejb/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>contactlist</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/contactlist/contactlist-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/contactlist/contactlist-tests/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/contactlist/contactlist-tests/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -5,7 +5,7 @@
<parent>
<artifactId>contactlist</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/contactlist/contactlist-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/contactlist/contactlist-web/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/contactlist/contactlist-web/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>contactlist</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/contactlist/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/contactlist/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/contactlist/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/Seam_2_3/examples-ee6/drools/drools-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/drools/drools-ear/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/drools/drools-ear/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.jboss.seam.examples-ee6</groupId>
<artifactId>drools</artifactId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/drools/drools-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/drools/drools-ejb/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/drools/drools-ejb/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.jboss.seam.examples-ee6</groupId>
<artifactId>drools</artifactId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/drools/drools-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/drools/drools-tests/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/drools/drools-tests/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.jboss.seam.examples-ee6</groupId>
<artifactId>drools</artifactId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/drools/drools-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/drools/drools-web/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/drools/drools-web/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.seam.examples-ee6</groupId>
<artifactId>drools</artifactId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/drools/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/drools/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/drools/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-ear/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-ear/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>dvdstore</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-ejb/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-ejb/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -5,7 +5,7 @@
<parent>
<artifactId>dvdstore</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-tests/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-tests/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>dvdstore</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-web/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-web/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>dvdstore</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/dvdstore/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/dvdstore/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/dvdstore/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/Seam_2_3/examples-ee6/excel/excel-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/excel/excel-ear/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/excel/excel-ear/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>excel</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/excel/excel-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/excel/excel-ejb/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/excel/excel-ejb/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>excel</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/excel/excel-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/excel/excel-tests/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/excel/excel-tests/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>excel</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/excel/excel-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/excel/excel-web/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/excel/excel-web/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>excel</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/excel/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/excel/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/excel/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/groovybooking/groovybooking-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/groovybooking/groovybooking-tests/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/groovybooking/groovybooking-tests/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -6,7 +6,7 @@
<parent>
<artifactId>groovybooking</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/groovybooking/groovybooking-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/groovybooking/groovybooking-web/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/groovybooking/groovybooking-web/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -6,7 +6,7 @@
<parent>
<artifactId>groovybooking</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/groovybooking/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/groovybooking/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/groovybooking/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
</parent>
<packaging>pom</packaging>
<name>Groovy Booking Example (EE6)</name>
Modified: branches/community/Seam_2_3/examples-ee6/guice/guice-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/guice/guice-ear/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/guice/guice-ear/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>guice</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/guice/guice-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/guice/guice-ejb/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/guice/guice-ejb/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>guice</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/guice/guice-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/guice/guice-tests/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/guice/guice-tests/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -7,7 +7,7 @@
<parent>
<artifactId>guice</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/guice/guice-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/guice/guice-web/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/guice/guice-web/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -5,7 +5,7 @@
<parent>
<artifactId>guice</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/guice/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/guice/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/guice/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/Seam_2_3/examples-ee6/hibernate/hibernate-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/hibernate/hibernate-tests/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/hibernate/hibernate-tests/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -7,7 +7,7 @@
<parent>
<artifactId>hibernate</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/hibernate/hibernate-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/hibernate/hibernate-web/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/hibernate/hibernate-web/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -6,7 +6,7 @@
<parent>
<artifactId>hibernate</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/hibernate/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/hibernate/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/hibernate/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-ear/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-ear/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>icefaces</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-ejb/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-ejb/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -5,7 +5,7 @@
<parent>
<artifactId>icefaces</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-tests/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-tests/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>icefaces</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-web/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-web/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -5,7 +5,7 @@
<parent>
<artifactId>icefaces</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/icefaces/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/icefaces/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/icefaces/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/Seam_2_3/examples-ee6/itext/itext-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/itext/itext-ear/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/itext/itext-ear/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>itext</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/itext/itext-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/itext/itext-ejb/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/itext/itext-ejb/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>itext</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/itext/itext-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/itext/itext-tests/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/itext/itext-tests/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>itext</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/itext/itext-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/itext/itext-web/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/itext/itext-web/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>itext</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/itext/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/itext/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/itext/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/Seam_2_3/examples-ee6/jee6/jee6-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/jee6/jee6-tests/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/jee6/jee6-tests/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>jee6</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/jee6/jee6-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/jee6/jee6-web/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/jee6/jee6-web/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>jee6</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/jee6/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/jee6/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/jee6/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<packaging>pom</packaging>
Modified: branches/community/Seam_2_3/examples-ee6/jpa/jpa-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/jpa/jpa-tests/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/jpa/jpa-tests/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -5,7 +5,7 @@
<parent>
<artifactId>jpa</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/jpa/jpa-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/jpa/jpa-web/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/jpa/jpa-web/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>jpa</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/jpa/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/jpa/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/jpa/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
</parent>
<packaging>pom</packaging>
<name>JPA Example (EE6)</name>
Modified: branches/community/Seam_2_3/examples-ee6/mail/mail-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/mail/mail-ear/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/mail/mail-ear/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>mail</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/mail/mail-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/mail/mail-ejb/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/mail/mail-ejb/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>mail</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/mail/mail-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/mail/mail-tests/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/mail/mail-tests/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>mail</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/mail/mail-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/mail/mail-web/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/mail/mail-web/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>mail</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/mail/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/mail/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/mail/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<packaging>pom</packaging>
Modified: branches/community/Seam_2_3/examples-ee6/messages/messages-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/messages/messages-ear/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/messages/messages-ear/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>messages</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/messages/messages-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/messages/messages-ejb/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/messages/messages-ejb/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>messages</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/messages/messages-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/messages/messages-tests/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/messages/messages-tests/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>messages</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/messages/messages-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/messages/messages-web/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/messages/messages-web/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>messages</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/messages/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/messages/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/messages/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-ear/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-ear/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.seam.examples-ee6.metawidget</groupId>
<artifactId>booking</artifactId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-ejb/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-ejb/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>booking</artifactId>
<groupId>org.jboss.seam.examples-ee6.metawidget</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-tests/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-tests/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>booking</artifactId>
<groupId>org.jboss.seam.examples-ee6.metawidget</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-web/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-web/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>booking</artifactId>
<groupId>org.jboss.seam.examples-ee6.metawidget</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/metawidget/booking/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/metawidget/booking/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/metawidget/booking/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<packaging>pom</packaging>
Modified: branches/community/Seam_2_3/examples-ee6/metawidget/groovybooking/groovybooking-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/metawidget/groovybooking/groovybooking-tests/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/metawidget/groovybooking/groovybooking-tests/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -5,7 +5,7 @@
<parent>
<artifactId>groovybooking</artifactId>
<groupId>org.jboss.seam.examples-ee6.metawidget</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/metawidget/groovybooking/groovybooking-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/metawidget/groovybooking/groovybooking-web/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/metawidget/groovybooking/groovybooking-web/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>groovybooking</artifactId>
<groupId>org.jboss.seam.examples-ee6.metawidget</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/metawidget/groovybooking/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/metawidget/groovybooking/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/metawidget/groovybooking/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<packaging>pom</packaging>
Modified: branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-ear/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-ear/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>nestedbooking</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-ejb/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-ejb/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>nestedbooking</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-tests/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-tests/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>nestedbooking</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-web/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-web/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>nestedbooking</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/nestedbooking/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/nestedbooking/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/nestedbooking/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
</parent>
<packaging>pom</packaging>
<name>Nested Booking Example (EE6)</name>
Modified: branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-ear/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-ear/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -5,7 +5,7 @@
<parent>
<artifactId>numberguess</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-ejb/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-ejb/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -5,7 +5,7 @@
<parent>
<artifactId>numberguess</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-tests/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-tests/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -5,7 +5,7 @@
<parent>
<artifactId>numberguess</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-web/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-web/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -5,7 +5,7 @@
<parent>
<artifactId>numberguess</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/numberguess/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/numberguess/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/numberguess/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
</parent>
<packaging>pom</packaging>
<name>Numberguess Example (EE6)</name>
Modified: branches/community/Seam_2_3/examples-ee6/openid/openid-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/openid/openid-ear/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/openid/openid-ear/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>openid</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/openid/openid-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/openid/openid-ejb/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/openid/openid-ejb/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>openid</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/openid/openid-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/openid/openid-tests/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/openid/openid-tests/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>openid</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/openid/openid-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/openid/openid-web/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/openid/openid-web/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>openid</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/openid/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/openid/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/openid/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/Seam_2_3/examples-ee6/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<packaging>pom</packaging>
<name>Seam 2 EE 6 examples</name>
Modified: branches/community/Seam_2_3/examples-ee6/quartz/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/quartz/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/quartz/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
</parent>
<packaging>pom</packaging>
<name>Quartz Example (EE6)</name>
Modified: branches/community/Seam_2_3/examples-ee6/quartz/quartz-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/quartz/quartz-ear/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/quartz/quartz-ear/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>quartz</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/quartz/quartz-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/quartz/quartz-ejb/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/quartz/quartz-ejb/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>quartz</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/quartz/quartz-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/quartz/quartz-tests/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/quartz/quartz-tests/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>quartz</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/quartz/quartz-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/quartz/quartz-web/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/quartz/quartz-web/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>quartz</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/registration/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/registration/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/registration/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/Seam_2_3/examples-ee6/registration/registration-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/registration/registration-ear/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/registration/registration-ear/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>registration</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/registration/registration-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/registration/registration-ejb/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/registration/registration-ejb/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>registration</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/registration/registration-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/registration/registration-tests/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/registration/registration-tests/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>registration</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/registration/registration-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/registration/registration-web/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/registration/registration-web/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>registration</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/remoting/chatroom/chatroom-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/remoting/chatroom/chatroom-ear/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/remoting/chatroom/chatroom-ear/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>chatroom</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/remoting/chatroom/chatroom-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/remoting/chatroom/chatroom-ejb/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/remoting/chatroom/chatroom-ejb/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>chatroom</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/remoting/chatroom/chatroom-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/remoting/chatroom/chatroom-tests/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/remoting/chatroom/chatroom-tests/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>chatroom</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/remoting/chatroom/chatroom-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/remoting/chatroom/chatroom-web/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/remoting/chatroom/chatroom-web/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>chatroom</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/remoting/chatroom/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/remoting/chatroom/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/remoting/chatroom/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/remoting/gwt/gwt-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/remoting/gwt/gwt-ear/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/remoting/gwt/gwt-ear/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>gwt</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/remoting/gwt/gwt-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/remoting/gwt/gwt-ejb/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/remoting/gwt/gwt-ejb/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>gwt</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/remoting/gwt/gwt-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/remoting/gwt/gwt-tests/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/remoting/gwt/gwt-tests/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>gwt</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/remoting/gwt/gwt-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/remoting/gwt/gwt-web/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/remoting/gwt/gwt-web/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>gwt</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/remoting/gwt/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/remoting/gwt/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/remoting/gwt/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/remoting/helloworld/helloworld-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/remoting/helloworld/helloworld-ear/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/remoting/helloworld/helloworld-ear/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>helloworld</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/remoting/helloworld/helloworld-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/remoting/helloworld/helloworld-ejb/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/remoting/helloworld/helloworld-ejb/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>helloworld</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/remoting/helloworld/helloworld-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/remoting/helloworld/helloworld-tests/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/remoting/helloworld/helloworld-tests/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>helloworld</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/remoting/helloworld/helloworld-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/remoting/helloworld/helloworld-web/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/remoting/helloworld/helloworld-web/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>helloworld</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/remoting/helloworld/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/remoting/helloworld/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/remoting/helloworld/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/remoting/progressbar/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/remoting/progressbar/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/remoting/progressbar/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/remoting/progressbar/progressbar-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/remoting/progressbar/progressbar-ear/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/remoting/progressbar/progressbar-ear/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>progressbar</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/remoting/progressbar/progressbar-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/remoting/progressbar/progressbar-ejb/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/remoting/progressbar/progressbar-ejb/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>progressbar</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/remoting/progressbar/progressbar-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/remoting/progressbar/progressbar-web/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/remoting/progressbar/progressbar-web/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>progressbar</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/restbay/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/restbay/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/restbay/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
</parent>
<packaging>pom</packaging>
<name>Restbay Example (EE6)</name>
Modified: branches/community/Seam_2_3/examples-ee6/restbay/restbay-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/restbay/restbay-ear/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/restbay/restbay-ear/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>restbay</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/restbay/restbay-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/restbay/restbay-ejb/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/restbay/restbay-ejb/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>restbay</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/restbay/restbay-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/restbay/restbay-tests/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/restbay/restbay-tests/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>restbay</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/restbay/restbay-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/restbay/restbay-web/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/restbay/restbay-web/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>restbay</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/rss/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/rss/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/rss/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/Seam_2_3/examples-ee6/rss/rss-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/rss/rss-ear/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/rss/rss-ear/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>rss</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/rss/rss-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/rss/rss-ejb/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/rss/rss-ejb/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>rss</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/rss/rss-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/rss/rss-tests/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/rss/rss-tests/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>rss</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/rss/rss-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/rss/rss-web/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/rss/rss-web/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>rss</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/seambay/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seambay/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/seambay/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
</parent>
<packaging>pom</packaging>
<name>Seambay Example (EE6)</name>
Modified: branches/community/Seam_2_3/examples-ee6/seambay/seambay-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seambay/seambay-ear/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/seambay/seambay-ear/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seambay</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/seambay/seambay-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seambay/seambay-ejb/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/seambay/seambay-ejb/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seambay</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/seambay/seambay-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seambay/seambay-tests/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/seambay/seambay-tests/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seambay</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/seambay/seambay-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seambay/seambay-web/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/seambay/seambay-web/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seambay</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/seamdiscs/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seamdiscs/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/seamdiscs/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
</parent>
<packaging>pom</packaging>
<name>Seamdiscs Example</name>
Modified: branches/community/Seam_2_3/examples-ee6/seamdiscs/seamdiscs-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seamdiscs/seamdiscs-ear/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/seamdiscs/seamdiscs-ear/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamdiscs</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/seamdiscs/seamdiscs-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seamdiscs/seamdiscs-ejb/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/seamdiscs/seamdiscs-ejb/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamdiscs</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/seamdiscs/seamdiscs-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seamdiscs/seamdiscs-tests/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/seamdiscs/seamdiscs-tests/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamdiscs</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/seamdiscs/seamdiscs-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seamdiscs/seamdiscs-web/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/seamdiscs/seamdiscs-web/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamdiscs</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/seampay/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seampay/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/seampay/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
</parent>
<packaging>pom</packaging>
<name>Seampay Example (EE6)</name>
Modified: branches/community/Seam_2_3/examples-ee6/seampay/seampay-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seampay/seampay-ear/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/seampay/seampay-ear/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seampay</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/seampay/seampay-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seampay/seampay-ejb/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/seampay/seampay-ejb/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seampay</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/seampay/seampay-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seampay/seampay-tests/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/seampay/seampay-tests/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seampay</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/seampay/seampay-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seampay/seampay-web/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/seampay/seampay-web/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seampay</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/seamspace/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seamspace/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/seamspace/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
</parent>
<packaging>pom</packaging>
<name>SeamSpace Example (EE6)</name>
Modified: branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-ear/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-ear/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamspace</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-ejb/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-ejb/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamspace</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-tests/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-tests/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamspace</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-web/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-web/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamspace</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/spring/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/spring/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/spring/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
</parent>
<packaging>pom</packaging>
<name>Spring Example (EE6)</name>
Modified: branches/community/Seam_2_3/examples-ee6/spring/spring-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/spring/spring-tests/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/spring/spring-tests/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>spring</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/spring/spring-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/spring/spring-web/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/spring/spring-web/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>spring</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/tasks/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/tasks/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/tasks/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
</parent>
<packaging>pom</packaging>
<name>Tasks Example (EE6)</name>
Modified: branches/community/Seam_2_3/examples-ee6/tasks/tasks-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/tasks/tasks-ear/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/tasks/tasks-ear/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>tasks</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/tasks/tasks-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/tasks/tasks-ejb/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/tasks/tasks-ejb/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>tasks</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/tasks/tasks-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/tasks/tasks-tests/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/tasks/tasks-tests/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>tasks</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/tasks/tasks-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/tasks/tasks-web/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/tasks/tasks-web/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>tasks</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/todo/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/todo/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/todo/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
</parent>
<packaging>pom</packaging>
Modified: branches/community/Seam_2_3/examples-ee6/todo/todo-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/todo/todo-ear/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/todo/todo-ear/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>todo</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/todo/todo-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/todo/todo-ejb/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/todo/todo-ejb/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>todo</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/todo/todo-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/todo/todo-tests/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/todo/todo-tests/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>todo</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/todo/todo-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/todo/todo-web/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/todo/todo-web/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>todo</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/ui/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/ui/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/ui/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/ui/ui-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/ui/ui-ear/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/ui/ui-ear/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/ui/ui-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/ui/ui-ejb/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/ui/ui-ejb/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/ui/ui-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/ui/ui-tests/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/ui/ui-tests/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/ui/ui-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/ui/ui-web/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/ui/ui-web/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/wicket/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/wicket/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/wicket/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
</parent>
<packaging>pom</packaging>
<name>Wicket Booking Example (EE6)</name>
Modified: branches/community/Seam_2_3/examples-ee6/wicket/wicket-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/wicket/wicket-ear/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/wicket/wicket-ear/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>wicket</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/wicket/wicket-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/wicket/wicket-ejb/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/wicket/wicket-ejb/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>wicket</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/wicket/wicket-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/wicket/wicket-tests/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/wicket/wicket-tests/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>wicket</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/examples-ee6/wicket/wicket-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/wicket/wicket-web/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/examples-ee6/wicket/wicket-web/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>wicket</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/functional-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/functional-tests/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/functional-tests/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/jboss-seam/pom.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/jboss-seam/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>jboss-seam-parent</artifactId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/jboss-seam-debug/pom.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-debug/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/jboss-seam-debug/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/Seam_2_3/jboss-seam-excel/pom.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-excel/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/jboss-seam-excel/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/Seam_2_3/jboss-seam-flex/pom.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-flex/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/jboss-seam-flex/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/Seam_2_3/jboss-seam-gen/pom.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-gen/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/jboss-seam-gen/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>jboss-seam-parent</artifactId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/jboss-seam-ioc/pom.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-ioc/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/jboss-seam-ioc/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/Seam_2_3/jboss-seam-jul/pom.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-jul/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/jboss-seam-jul/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -3,7 +3,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/jboss-seam-mail/pom.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-mail/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/jboss-seam-mail/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -3,7 +3,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/jboss-seam-pdf/pom.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-pdf/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/jboss-seam-pdf/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -3,7 +3,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/jboss-seam-remoting/pom.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-remoting/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/jboss-seam-remoting/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/Seam_2_3/jboss-seam-resteasy/pom.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-resteasy/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/jboss-seam-resteasy/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/Seam_2_3/jboss-seam-rss/pom.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-rss/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/jboss-seam-rss/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/Seam_2_3/jboss-seam-ui/pom.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-ui/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/jboss-seam-ui/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>jboss-seam-ui</artifactId>
Modified: branches/community/Seam_2_3/jboss-seam-wicket/pom.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-wicket/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/jboss-seam-wicket/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -3,7 +3,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/pom.xml
===================================================================
--- branches/community/Seam_2_3/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -10,7 +10,7 @@
<groupId>org.jboss.seam</groupId>
<artifactId>jboss-seam-parent</artifactId>
<name>Seam Parent</name>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<packaging>pom</packaging>
<licenses>
@@ -44,7 +44,7 @@
<pdf.name>${project.artifactId}.pdf</pdf.name>
<!-- Version string properties -->
- <version.seam>2.3.0.CR1-SNAPSHOT</version.seam>
+ <version.seam>2.3.0.CR1</version.seam>
<version.arquillian_core>1.0.1.Final</version.arquillian_core>
<version.wicket>1.4.14</version.wicket>
<version.testng>5.14.10</version.testng>
Modified: branches/community/Seam_2_3/seam-cdk-helper/pom.xml
===================================================================
--- branches/community/Seam_2_3/seam-cdk-helper/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/seam-cdk-helper/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -5,13 +5,13 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>seam-cdk-helper</artifactId>
<packaging>maven-plugin</packaging>
- <version>1.0-SNAPSHOT</version>
+ <version>1.0</version>
<name>Seam 2.3 CDK Helper for using RF 4 CDK</name>
<url>http://seamframework.org</url>
<dependencies>
Modified: branches/community/Seam_2_3/seam-integration-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/seam-integration-tests/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/seam-integration-tests/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -4,7 +4,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/seam-reference-guide/pom.xml
===================================================================
--- branches/community/Seam_2_3/seam-reference-guide/pom.xml 2012-09-02 10:12:21 UTC (rev 15100)
+++ branches/community/Seam_2_3/seam-reference-guide/pom.xml 2012-09-02 10:16:30 UTC (rev 15101)
@@ -3,7 +3,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.CR1-SNAPSHOT</version>
+ <version>2.3.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
12 years, 2 months