Seam SVN: r14722 - branches/community/Seam_2_3.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-05-21 18:38:50 -0400 (Mon, 21 May 2012)
New Revision: 14722
Modified:
branches/community/Seam_2_3/release-process.txt
Log:
edited release process to clarify Maven upload to Staging repository
Modified: branches/community/Seam_2_3/release-process.txt
===================================================================
--- branches/community/Seam_2_3/release-process.txt 2012-05-21 21:51:30 UTC (rev 14721)
+++ branches/community/Seam_2_3/release-process.txt 2012-05-21 22:38:50 UTC (rev 14722)
@@ -22,7 +22,6 @@
- Check all the issue types one at a time to determine final list.
- update pom.xml versions
- mvn versions:set -DnewVersion=XXX
- - Update also seam-integration-tests/src/test/java/org/jboss/seam/test/integration/Deployments.java with current version
Maven repository settings
@@ -39,18 +38,27 @@
- <TODO document way to set local repo settings for clean build />
- Go to jboss-seam-parent and run "mvn clean verify -s ../build/settings.xml" with these changes
- This should build, and test without a problem.
- - Run "mvn depedency:tree -s ../build/settings.xml -DoutputFile=../depedency-report.txt"
+ - Run "mvn dependency:tree -s ../build/settings.xml -DoutputFile=../dependency-report.txt"
- Review for snapshot dependencies
Staging Maven artifacts - UPDATE from tomboy note - TODO
------------------------
* Maven release procedure.
- - Run "mvn clean deploy -Drepository.username=<your_username> -Drepository.password=<your_password> stageReleaseSeam" in the build directory
+ - Run mvn deploy -DrepositoryId=jboss-releases-repository -Durl=https://repository.jboss.org/nexus/service/local/staging/deploy/maven2 -s settings-staging.xml
- Then follow http://community.jboss.org/wiki/MavenDeployingaRelease section Closing the Staging Respository
- test a Seam project with staged artifacts in repository https://repository.jboss.org/nexus/content/groups/staging/
- then release Maven artifacts
+Note: staging-settings.xml contains a setup of jboss.org Account to be able to upload to Staging repository - look at https://community.jboss.org/wiki/MavenRepositoryConfiguration
+There needs to be something like:
+ <server>
+ <id>jboss-releases-repository</id>
+ <username><your jboss.org account></username>
+ <password></password>
+ </server>
+ </servers>
+
Internal testing before tagging for Final releases
--------------------------------------------------
Final releases should be verified before tagging. Just note revision number after updating changelog.txt.
@@ -68,7 +76,7 @@
-m "create JBoss_Seam_x_x_x_XXX tag""
- ex. "svn copy https://svn.jboss.org/repos/seam/trunk
https://svn.jboss.org/repos/seam/tags/JBoss_Seam_2_1_0_B1
- -m "create JBoss_Seam_2_1_0_B1 tag""
+ -m "created JBoss_Seam_2_1_0_B1 tag"
* In a clean directory checkout the newly tagged seam source ( XX as needed)
- "svn co https://svn.jboss.org/repos/seam/tags/JBoss_Seam_x_x_x_XXX seam"
- ex. "svn co https://svn.jboss.org/repos/seam/tags/JBoss_Seam_2_1_0_B1 seam"
13 years, 10 months
Seam SVN: r14721 - tags.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-05-21 17:51:30 -0400 (Mon, 21 May 2012)
New Revision: 14721
Added:
tags/JBoss_Seam_2_3_0_Beta2/
Log:
created JBoss_Seam_2_3_0_Beta2 tag
13 years, 10 months
Seam SVN: r14720 - branches/community/Seam_2_3.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-05-21 17:50:16 -0400 (Mon, 21 May 2012)
New Revision: 14720
Modified:
branches/community/Seam_2_3/pom.xml
Log:
customized profiles for doing build without examples
Modified: branches/community/Seam_2_3/pom.xml
===================================================================
--- branches/community/Seam_2_3/pom.xml 2012-05-21 18:36:40 UTC (rev 14719)
+++ branches/community/Seam_2_3/pom.xml 2012-05-21 21:50:16 UTC (rev 14720)
@@ -509,9 +509,7 @@
<module>jboss-seam-wicket</module>
<module>jboss-seam-ioc</module>
<module>jboss-seam-jul</module>
- <module>functional-tests</module>
- <module>examples-ee6</module>
- <module>seam-integration-tests</module>
+ <module>seam-integration-tests</module>
</modules>
<profiles>
@@ -522,34 +520,21 @@
<module>seam-reference-guide</module>
</modules>
</profile>
- <profile>
+ <profile>
+ <id>all</id>
+ <modules>
+ <module>seam-reference-guide</module>
+ <module>functional-tests</module>
+ <module>examples-ee6</module>
+ <module>distribution</module>
+ </modules>
+ </profile>
+ <profile>
<id>distribution</id>
<modules>
<module>seam-reference-guide</module>
<module>distribution</module>
</modules>
- <build>
- <plugins>
-<!-- <plugin> -->
-<!-- <artifactId>maven-assembly-plugin</artifactId> -->
-<!-- <executions> -->
-<!-- <execution> -->
-<!-- <id>project-distribution</id> -->
-<!-- <phase>package</phase> -->
-<!-- <goals> -->
-<!-- <goal>single</goal> -->
-<!-- </goals> -->
-<!-- <configuration> -->
-<!-- <descriptorRefs> -->
-<!-- <descriptorRef>project</descriptorRef> -->
-<!-- </descriptorRefs> -->
-<!-- </configuration> -->
-<!-- </execution> -->
-<!-- </executions> -->
-<!-- </plugin> -->
- </plugins>
- </build>
-
</profile>
<profile>
<id>code-coverage</id>
13 years, 10 months
Seam SVN: r14719 - branches/community/Seam_2_3.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-05-21 14:36:40 -0400 (Mon, 21 May 2012)
New Revision: 14719
Modified:
branches/community/Seam_2_3/pom.xml
Log:
removed jboss-embedded-bootstrap from parent pom.xml even it is commented out
Modified: branches/community/Seam_2_3/pom.xml
===================================================================
--- branches/community/Seam_2_3/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
+++ branches/community/Seam_2_3/pom.xml 2012-05-21 18:36:40 UTC (rev 14719)
@@ -509,7 +509,6 @@
<module>jboss-seam-wicket</module>
<module>jboss-seam-ioc</module>
<module>jboss-seam-jul</module>
-<!-- <module>jboss-embedded-bootstrap</module> -->
<module>functional-tests</module>
<module>examples-ee6</module>
<module>seam-integration-tests</module>
13 years, 10 months
Seam SVN: r14718 - in branches/community/Seam_2_3: bom and 190 other directories.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-05-21 14:32:46 -0400 (Mon, 21 May 2012)
New Revision: 14718
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/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/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-integration-tests/pom.xml
branches/community/Seam_2_3/seam-reference-guide/pom.xml
Log:
changed version to 2.3.0.Beta2
Modified: branches/community/Seam_2_3/bom/pom.xml
===================================================================
--- branches/community/Seam_2_3/bom/pom.xml 2012-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/bom/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<groupId>org.jboss.seam</groupId>
<artifactId>bom</artifactId>
<name>Seam 2 Bill Of Materials </name>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</version>
<packaging>pom</packaging>
<licenses>
@@ -31,7 +31,7 @@
<properties>
<!-- Version string properties -->
- <version.seam>2.3.0.Beta2-SNAPSHOT</version.seam>
+ <version.seam>2.3.0.Beta2</version.seam>
<version.wicket>1.4.14</version.wicket>
<version.drools>5.1.1</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/build/common.build.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -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.Beta2-SNAPSHOT" />
+ <property name="complete.version" value="2.3.0.Beta2" />
<condition property="mavenized.property">
<not>
Modified: branches/community/Seam_2_3/distribution/pom.xml
===================================================================
--- branches/community/Seam_2_3/distribution/pom.xml 2012-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/distribution/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>jboss-seam-parent</artifactId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/distribution/src/main/assembly/changelog.txt 2012-05-21 18:32:46 UTC (rev 14718)
@@ -1,6 +1,48 @@
JBoss Seam Changelog
====================
+Release Notes - Seam2 - Version 2.3.0.BETA2
+
+** Sub-task
+ * [ JBSEAM-4875 ] Use RichFaces 4
+ * [ JBSEAM-4877 ] Use Hibernate 4, including Validator and Search
+ * [ JBSEAM-4888 ] Deprecate JBoss Embedded Tests and add support for Arquillian
+
+** Feature Request
+ * [ JBSEAM-4859 ] Create Arquillian integration
+ * [ JBSEAM-4921 ] Create Infinispan Cache provider
+ * [ JBSEAM-4934 ] JUnit version of DBUnitSeamTest working with arquillian
+
+** Bug
+ * [ JBSEAM-4870 ] JBoss Tools don't know about Seam 2.3
+ * [ JBSEAM-4914 ] Cannot deploy Seam project generated in JBDS - datasource problem
+ * [ JBSEAM-4915 ] Cannot deploy Seam project generated in JBDS - jboss-web.xml
+ * [ JBSEAM-4917 ] seam-messages example error on every request: java.lang.IllegalStateException: No active conversation context
+ * [ JBSEAM-4918 ] Cannot deploy Seam project generated in JBDS - other problems
+ * [ JBSEAM-4919 ] seam-ui example java.lang.IndexOutOfBoundsException in restoreState
+ * [ JBSEAM-4920 ] NPE in logging during SeamDebugPhaseListener beforePhase
+ * [ JBSEAM-4922 ] Wrong class cast in org.jboss.seam.transaction.Transaction.getUserTransaction
+ * [ JBSEAM-4923 ] Resteasy ResourceHome Unable to unmarshall request body on AS7
+ * [ JBSEAM-4924 ] Seam 2.3.0.Beta1 distribution contains SNAPSHOT dependencies
+ * [ JBSEAM-4928 ] jpa example Exception calling user Synchronization: ... reuse of Transaction instances not supported
+ * [ JBSEAM-4929 ] seam-booking 2.3.0.Beta1 uses web.xml 3.0 without compiling to Java 1.6
+ * [ JBSEAM-4930 ] NPE in SeamViewHandler.restoreView restoring expired view in the seam spring example
+ * [ JBSEAM-4931 ] dvdstore example error "Found extended persistence context in SFSB invocation call stack but that cannot be used because the transaction already has a transactional context associated with it."
+ * [ JBSEAM-4932 ] pages.xml is sometimes not loaded
+ * [ JBSEAM-4936 ] SEAM 2.3 - Spring 3 - Hibernate 4 Integration bug
+ * [ JBSEAM-4946 ] seam-gen executing command "create-project" error
+ * [ JBSEAM-4952 ] seam-gen generated project deployment problem
+ * [ JBSEAM-4956 ] seam-gen generated application missing jboss-deployment-structure.xml file
+
+** Task
+ * [ JBSEAM-4858 ] Migrate integration testsuite for Seam and examples to Arquillian from JBoss Embedded
+ * [ JBSEAM-4865 ] Upgrade Richfaces to 4.2.1.Final for JSF2 support
+ * [ JBSEAM-4927 ] Create Seam 2 BOM file for easy usage
+ * [ JBSEAM-4937 ] Upgrade Spring integration to latest Spring 3.1
+ * [ JBSEAM-4943 ] Patch seam to not use the synchronisation interceptor for stateful session beans
+ * [ JBSEAM-4950 ] Add ant task for getting Arquillian JBoss AS7 container jars into distribution for seam-gen
+
+
Release Notes - Seam2 - Version 2.3.0.BETA1
** Feature Request
Modified: branches/community/Seam_2_3/distribution/src/main/assembly/readme.txt
===================================================================
--- branches/community/Seam_2_3/distribution/src/main/assembly/readme.txt 2012-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/distribution/src/main/assembly/readme.txt 2012-05-21 18:32:46 UTC (rev 14718)
@@ -1,7 +1,7 @@
-JBoss Seam - Contextual Component framework for Java EE 5
+JBoss Seam - Contextual Component framework for Java EE
=========================================================
-version 2.3.0.Beta1, March 2012
+version 2.3.0.Beta2, May 2012
This software is distributed under the terms of the FSF Lesser Gnu
Public License (see lgpl.txt).
@@ -9,7 +9,7 @@
Get Up And Running Quick
------------------------
-1. Install JBoss AS 7.1.0.Final
+1. Install JBoss AS 7.1.1.Final
2. Start JBoss AS by typing "bin/standalone.sh" in the JBoss home directory
@@ -35,15 +35,4 @@
Notes for this release
----------------------
-Be warned that JBoss Embedded is LEGACY runtime. Description below is still
-working but is not supported.
-
-Running the examples with embedded JBoss on Tomcat 6 requires the following
-additional JARs to be updated/added to the Tomcat lib directory after normal
-embedded JBoss embedded install
-
-lib/test/hibernate-all.jar
-lib/test/thirdparty-all.jar
-lib/slf4j-api.jar
-lib/sl4j-log4j12.jar
-lib/hsqldb.jar
+Be warned that JBoss Embedded is LEGACY runtime and is not in Seam 2.3 distribution anymore
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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/blog/blog-ear/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -5,7 +5,7 @@
<parent>
<artifactId>blog</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/blog/blog-ejb/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.jboss.seam.examples-ee6</groupId>
<artifactId>blog</artifactId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/blog/blog-tests/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.jboss.seam.examples-ee6</groupId>
<artifactId>blog</artifactId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/blog/blog-web/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -6,7 +6,7 @@
<parent>
<artifactId>blog</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/blog/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/booking/booking-ear/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>booking</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/booking/booking-ejb/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>booking</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/booking/booking-tests/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>booking</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/booking/booking-web/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>booking</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/booking/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/contactlist/contactlist-ear/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>contactlist</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/contactlist/contactlist-ejb/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>contactlist</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/contactlist/contactlist-tests/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -5,7 +5,7 @@
<parent>
<artifactId>contactlist</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/contactlist/contactlist-web/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>contactlist</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/contactlist/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/drools/drools-ear/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.jboss.seam.examples-ee6</groupId>
<artifactId>drools</artifactId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/drools/drools-ejb/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.jboss.seam.examples-ee6</groupId>
<artifactId>drools</artifactId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/drools/drools-tests/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.jboss.seam.examples-ee6</groupId>
<artifactId>drools</artifactId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/drools/drools-web/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.seam.examples-ee6</groupId>
<artifactId>drools</artifactId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/drools/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-ear/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>dvdstore</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-ejb/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>dvdstore</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-tests/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>dvdstore</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-web/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>dvdstore</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/dvdstore/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/excel/excel-ear/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>excel</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/excel/excel-ejb/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>excel</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/excel/excel-tests/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>excel</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/excel/excel-web/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>excel</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/excel/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/groovybooking/groovybooking-tests/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -6,7 +6,7 @@
<parent>
<artifactId>groovybooking</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/groovybooking/groovybooking-web/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -6,7 +6,7 @@
<parent>
<artifactId>groovybooking</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/groovybooking/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/guice/guice-ear/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>guice</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/guice/guice-ejb/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>guice</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/guice/guice-tests/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -7,7 +7,7 @@
<parent>
<artifactId>guice</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/guice/guice-web/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -5,7 +5,7 @@
<parent>
<artifactId>guice</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/guice/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/hibernate/hibernate-tests/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -7,7 +7,7 @@
<parent>
<artifactId>hibernate</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/hibernate/hibernate-web/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -6,7 +6,7 @@
<parent>
<artifactId>hibernate</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/hibernate/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-ear/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>icefaces</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-ejb/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -5,7 +5,7 @@
<parent>
<artifactId>icefaces</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-tests/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>icefaces</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-web/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -5,7 +5,7 @@
<parent>
<artifactId>icefaces</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/icefaces/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/itext/itext-ear/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>itext</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/itext/itext-ejb/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>itext</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/itext/itext-tests/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>itext</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/itext/itext-web/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>itext</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/itext/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/jpa/jpa-tests/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -5,7 +5,7 @@
<parent>
<artifactId>jpa</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/jpa/jpa-web/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>jpa</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/jpa/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/mail/mail-ear/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>mail</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/mail/mail-ejb/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>mail</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/mail/mail-tests/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>mail</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/mail/mail-web/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>mail</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/mail/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/messages/messages-ear/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>messages</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/messages/messages-ejb/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>messages</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/messages/messages-tests/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>messages</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/messages/messages-web/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>messages</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/messages/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-ear/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.seam.examples-ee6.metawidget</groupId>
<artifactId>booking</artifactId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-ejb/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>booking</artifactId>
<groupId>org.jboss.seam.examples-ee6.metawidget</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-tests/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>booking</artifactId>
<groupId>org.jboss.seam.examples-ee6.metawidget</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-web/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>booking</artifactId>
<groupId>org.jboss.seam.examples-ee6.metawidget</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/metawidget/booking/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/metawidget/groovybooking/groovybooking-tests/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -5,7 +5,7 @@
<parent>
<artifactId>groovybooking</artifactId>
<groupId>org.jboss.seam.examples-ee6.metawidget</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/metawidget/groovybooking/groovybooking-web/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>groovybooking</artifactId>
<groupId>org.jboss.seam.examples-ee6.metawidget</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/metawidget/groovybooking/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-ear/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>nestedbooking</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-ejb/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>nestedbooking</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-tests/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>nestedbooking</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-web/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>nestedbooking</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/nestedbooking/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-ear/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -5,7 +5,7 @@
<parent>
<artifactId>numberguess</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-ejb/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -5,7 +5,7 @@
<parent>
<artifactId>numberguess</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-tests/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -5,7 +5,7 @@
<parent>
<artifactId>numberguess</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</version>
<relativePath>../pom.xml</relativePath>
</parent>
@@ -79,13 +79,11 @@
<dependency>
<groupId>org.javassist</groupId>
<artifactId>javassist</artifactId>
- <version>3.15.0-GA</version>
</dependency>
<dependency>
<groupId>org.jbpm</groupId>
<artifactId>jbpm-jpdl</artifactId>
- <version>3.2.3</version>
</dependency>
</dependencies>
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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/numberguess/numberguess-web/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -5,7 +5,7 @@
<parent>
<artifactId>numberguess</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/numberguess/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/openid/openid-ear/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>openid</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/openid/openid-ejb/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>openid</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/openid/openid-tests/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>openid</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/openid/openid-web/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>openid</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/openid/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>jboss-seam-parent</artifactId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</version>
<relativePath>../pom.xml</relativePath>
</parent>
@@ -32,6 +32,7 @@
<module>metawidget/booking</module>
<module>metawidget/groovybooking</module>
<module>nestedbooking</module>
+<!-- <module>numberguess</module> -->
<module>openid</module>
<module>quartz</module>
<module>registration</module>
Modified: branches/community/Seam_2_3/examples-ee6/quartz/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/quartz/pom.xml 2012-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/quartz/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/quartz/quartz-ear/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>quartz</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/quartz/quartz-ejb/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>quartz</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/quartz/quartz-tests/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>quartz</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/quartz/quartz-web/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>quartz</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/registration/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/registration/registration-ear/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>registration</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/registration/registration-ejb/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>registration</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/registration/registration-tests/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>registration</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/registration/registration-web/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>registration</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/remoting/chatroom/chatroom-ear/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>chatroom</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/remoting/chatroom/chatroom-ejb/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>chatroom</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/remoting/chatroom/chatroom-tests/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>chatroom</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/remoting/chatroom/chatroom-web/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>chatroom</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/remoting/chatroom/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/remoting/gwt/gwt-ear/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>gwt</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/remoting/gwt/gwt-ejb/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>gwt</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/remoting/gwt/gwt-tests/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>gwt</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/remoting/gwt/gwt-web/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>gwt</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/remoting/gwt/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/remoting/helloworld/helloworld-ear/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>helloworld</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/remoting/helloworld/helloworld-ejb/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>helloworld</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/remoting/helloworld/helloworld-tests/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>helloworld</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/remoting/helloworld/helloworld-web/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>helloworld</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/remoting/helloworld/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/remoting/progressbar/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/remoting/progressbar/progressbar-ear/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>progressbar</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/remoting/progressbar/progressbar-ejb/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>progressbar</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/remoting/progressbar/progressbar-web/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>progressbar</artifactId>
<groupId>org.jboss.seam.examples-ee6.remoting</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/restbay/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/restbay/restbay-ear/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>restbay</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/restbay/restbay-ejb/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>restbay</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/restbay/restbay-tests/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>restbay</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/restbay/restbay-web/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>restbay</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/rss/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/rss/rss-ear/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>rss</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/rss/rss-ejb/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>rss</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/rss/rss-tests/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>rss</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/rss/rss-web/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>rss</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/seambay/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/seambay/seambay-ear/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seambay</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/seambay/seambay-ejb/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seambay</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/seambay/seambay-tests/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seambay</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/seambay/seambay-web/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seambay</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/seamdiscs/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/seamdiscs/seamdiscs-ear/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamdiscs</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/seamdiscs/seamdiscs-ejb/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamdiscs</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/seamdiscs/seamdiscs-tests/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamdiscs</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/seamdiscs/seamdiscs-web/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamdiscs</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/seampay/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/seampay/seampay-ear/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seampay</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/seampay/seampay-ejb/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seampay</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/seampay/seampay-tests/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seampay</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/seampay/seampay-web/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seampay</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/seamspace/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-ear/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamspace</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-ejb/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamspace</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-tests/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamspace</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/seamspace/seamspace-web/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>seamspace</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/spring/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/spring/spring-tests/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>spring</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/spring/spring-web/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>spring</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/tasks/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/tasks/tasks-ear/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>tasks</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/tasks/tasks-ejb/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>tasks</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/tasks/tasks-tests/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>tasks</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/tasks/tasks-web/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>tasks</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/todo/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/todo/todo-ear/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>todo</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/todo/todo-ejb/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>todo</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/todo/todo-tests/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>todo</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/todo/todo-web/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>todo</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/ui/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -3,7 +3,7 @@
<parent>
<artifactId>examples-ee6</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/ui/ui-ear/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/ui/ui-ejb/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/ui/ui-tests/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/ui/ui-web/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/wicket/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>examples-ee6</artifactId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/wicket/wicket-ear/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>wicket</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/wicket/wicket-ejb/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>wicket</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/wicket/wicket-tests/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>wicket</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/examples-ee6/wicket/wicket-web/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>wicket</artifactId>
<groupId>org.jboss.seam.examples-ee6</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/functional-tests/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/jboss-seam/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>jboss-seam-parent</artifactId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/jboss-seam-debug/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/jboss-seam-excel/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/jboss-seam-flex/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/jboss-seam-gen/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>jboss-seam-parent</artifactId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/jboss-seam-ioc/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/jboss-seam-jul/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -3,7 +3,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/jboss-seam-mail/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -3,7 +3,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/jboss-seam-pdf/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -3,7 +3,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/jboss-seam-remoting/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/jboss-seam-resteasy/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/jboss-seam-rss/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/jboss-seam-ui/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/jboss-seam-wicket/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -3,7 +3,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: branches/community/Seam_2_3/pom.xml
===================================================================
--- branches/community/Seam_2_3/pom.xml 2012-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -10,7 +10,7 @@
<groupId>org.jboss.seam</groupId>
<artifactId>jboss-seam-parent</artifactId>
<name>Seam Parent</name>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</version>
<packaging>pom</packaging>
<licenses>
Modified: branches/community/Seam_2_3/seam-integration-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/seam-integration-tests/pom.xml 2012-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/seam-integration-tests/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -4,7 +4,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</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-05-21 18:28:37 UTC (rev 14717)
+++ branches/community/Seam_2_3/seam-reference-guide/pom.xml 2012-05-21 18:32:46 UTC (rev 14718)
@@ -3,7 +3,7 @@
<parent>
<artifactId>jboss-seam-parent</artifactId>
<groupId>org.jboss.seam</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
+ <version>2.3.0.Beta2</version>
<relativePath>../pom.xml</relativePath>
</parent>
13 years, 10 months
Seam SVN: r14717 - in branches/community/Seam_2_3/jboss-embedded-bootstrap: src/main/resources/bootstrap and 6 other directories.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-05-21 14:28:37 -0400 (Mon, 21 May 2012)
New Revision: 14717
Removed:
branches/community/Seam_2_3/jboss-embedded-bootstrap/pom.xml
branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/META-INF/persistence.properties
branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/commons-logging.properties
branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/conf/bootstrap-beans.xml
branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/conf/jboss-service.xml
branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/conf/jbossjta-properties.xml
branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/conf/login-config.xml
branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/conf/props/messaging-roles.properties
branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/conf/props/messaging-users.properties
branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/ejb3-interceptors-aop.xml
branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/hsqldb-ds.xml
branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/jboss-local-jdbc.rar
branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/jboss-xa-jdbc.rar
branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/jms-ra.rar
branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/messaging/connection-factories-service.xml
branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/messaging/destinations-service.xml
branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/messaging/hsqldb-persistence-service.xml
branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/messaging/jms-ds.xml
branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/messaging/legacy-service.xml
branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/messaging/messaging-service.xml
branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/messaging/remoting-service.xml
branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/remoting-service.xml
branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deployers/aspect-deployer-beans.xml
branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deployers/ejb-deployer-beans.xml
branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deployers/ejb3-deployers-beans.xml
branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deployers/jboss-aspect-library-beans.xml
branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deployers/jca-deployers-beans.xml
branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deployers/metadata-beans.xml
branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deployers/security-deployer-beans.xml
branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/jndi.properties
branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/log4j.xml
Log:
removed jboss-embedded-bootstrap module
Deleted: branches/community/Seam_2_3/jboss-embedded-bootstrap/pom.xml
===================================================================
--- branches/community/Seam_2_3/jboss-embedded-bootstrap/pom.xml 2012-05-21 14:44:58 UTC (rev 14716)
+++ branches/community/Seam_2_3/jboss-embedded-bootstrap/pom.xml 2012-05-21 18:28:37 UTC (rev 14717)
@@ -1,14 +0,0 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
-
- <parent>
- <artifactId>jboss-seam-parent</artifactId>
- <groupId>org.jboss.seam</groupId>
- <version>2.3.0.Beta2-SNAPSHOT</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
-
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.jboss.seam</groupId>
- <artifactId>jboss-embedded-bootstrap</artifactId>
- <name>JBoss Embedded Bootstrap</name>
-</project>
Deleted: branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/META-INF/persistence.properties
===================================================================
--- branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/META-INF/persistence.properties 2012-05-21 14:44:58 UTC (rev 14716)
+++ branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/META-INF/persistence.properties 2012-05-21 18:28:37 UTC (rev 14717)
@@ -1,17 +0,0 @@
-hibernate.transaction.manager_lookup_class=org.hibernate.transaction.JBossTransactionManagerLookup
-#hibernate.connection.release_mode=after_statement
-#hibernate.transaction.flush_before_completion=false
-#hibernate.transaction.auto_close_session=false
-#hibernate.query.factory_class=org.hibernate.hql.ast.ASTQueryTranslatorFactory
-#hibernate.hbm2ddl.auto=create-drop
-#hibernate.hbm2ddl.auto=create
-hibernate.cache.provider_class=org.hibernate.cache.HashtableCacheProvider
-# Clustered cache with TreeCache
-#hibernate.cache.provider_class=org.jboss.ejb3.entity.TreeCacheProviderHook
-#hibernate.treecache.mbean.object_name=jboss.cache:service=EJB3EntityTreeCache
-#hibernate.dialect=org.hibernate.dialect.HSQLDialect
-hibernate.jndi.java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory
-hibernate.jndi.java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces
-hibernate.bytecode.use_reflection_optimizer=false
-# I don't think this is honored, but EJB3Deployer uses it
-hibernate.bytecode.provider=javassist
\ No newline at end of file
Deleted: branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/commons-logging.properties
===================================================================
--- branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/commons-logging.properties 2012-05-21 14:44:58 UTC (rev 14716)
+++ branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/commons-logging.properties 2012-05-21 18:28:37 UTC (rev 14717)
@@ -1,5 +0,0 @@
-# The Sun JSF RI bundles and wraps commons-logging, which, for unknown reasons, disables any other
-# commons-logging (my guess: the LogFactoryImpl detection routine is broken). This configuration
-# file makes it work again (also for unknown reasons).
-org.apache.commons.logging.LogFactory=org.apache.commons.logging.impl.LogFactoryImpl
-org.apache.commons.logging.Log=org.apache.commons.logging.impl.Log4JLogger
\ No newline at end of file
Deleted: branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/conf/bootstrap-beans.xml
===================================================================
--- branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/conf/bootstrap-beans.xml 2012-05-21 14:44:58 UTC (rev 14716)
+++ branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/conf/bootstrap-beans.xml 2012-05-21 18:28:37 UTC (rev 14717)
@@ -1,238 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
- The bootstrap of the server
--->
-<deployment xmlns="urn:jboss:bean-deployer:2.0">
-
- <bean name="SystemProperties" class="org.jboss.embedded.util.SystemProperties">
- <property name="properties">
- <map keyClass="java.lang.String" valueClass="java.lang.String">
- <entry>
- <key>jboss.bind.address</key>
- <value>127.0.0.1</value>
- </entry>
- <entry>
- <key>com.arjuna.ats.arjuna.common.propertiesFile</key>
- <value>${jboss.home.dir}/conf/jbossjta-properties.xml</value>
- </entry>
- <entry>
- <key>com.arjuna.ats.arjuna.objectstore.objectStoreDir</key>
- <value>${jboss.server.data.dir}/ObjectStore</value>
- </entry>
- </map>
- </property>
- </bean>
-
- <!-- The legacy JMX kernel -->
- <bean name="JMXKernel" class="org.jboss.embedded.adapters.JMXKernel">
- <property name="kernel">
- <inject bean="jboss.kernel:service=Kernel"/>
- </property>
- <property name="serverConfig">
- <inject bean="ServerConfig"/>
- </property>
- </bean>
-
- <!-- The MainDeployer -->
- <bean name="MainDeployer" class="org.jboss.deployers.plugins.main.MainDeployerImpl">
- <property name="structuralDeployers"><inject bean="StructuralDeployers"/></property>
- <property name="deployers"><inject bean="Deployers"/></property>
- </bean>
-
- <!-- The holder for deployers that determine structure -->
- <bean name="StructuralDeployers" class="org.jboss.deployers.vfs.plugins.structure.VFSStructuralDeployersImpl">
- <property name="structureBuilder">
- <!-- The consolidator of the structure information -->
- <bean name="StructureBuilder" class="org.jboss.deployers.vfs.plugins.structure.VFSStructureBuilder"/>
- </property>
- <!-- Accept any implementor of structure deployer -->
- <incallback method="addDeployer"/>
- <uncallback method="removeDeployer"/>
- </bean>
-
- <!-- The holder for deployers that do real deployment -->
- <bean name="Deployers" class="org.jboss.deployers.plugins.deployers.DeployersImpl">
- <constructor><parameter><inject bean="jboss.kernel:service=KernelController"/></parameter></constructor>
- <!-- Accept any implementor of deployer -->
- <incallback method="addDeployer"/>
- <uncallback method="removeDeployer"/>
- </bean>
-
- <!-- A declared structure descriptor deployer -->
- <bean name="DeclaredStructure" class="org.jboss.deployers.vfs.plugins.structure.explicit.DeclaredStructure"></bean>
-
- <!-- JAR Structure -->
- <bean name="JARStructure" class="org.jboss.deployers.vfs.plugins.structure.jar.JARStructure">
- <!-- Unless specified the default list of suffixes is .zip, .ear, .jar, ,.rar, .war, .sar, .har, .aop -->
- <constructor>
- <parameter>
- <set elementClass="java.lang.String">
- <value>.zip</value>
- <value>.ear</value>
- <value>.jar</value>
- <value>.rar</value>
- <value>.war</value>
- <value>.sar</value>
- <value>.har</value>
- <value>.aop</value>
- <value>.deployer</value>
- <value>.beans</value>
- </set>
- </parameter>
- </constructor>
- <property name="candidateStructureVisitorFactory">
- <!-- Any file that is not an ordinary directory is a candidate -->
- <bean name="JARStructureCandidates" class="org.jboss.deployers.vfs.spi.structure.helpers.DefaultCandidateStructureVisitorFactory">
- <!-- A filter to exclude some obvious non-subdeployments -->
- <property name="filter">
- <bean name="JARFilter" class="org.jboss.virtual.plugins.vfs.helpers.SuffixesExcludeFilter">
- <constructor><parameter>
- <list elementClass="java.lang.String">
- <!-- Exclude class files as subdeployments -->
- <value>.class</value>
- </list>
- </parameter></constructor>
- </bean>
- </property>
- </bean>
- </property>
- </bean>
-
- <!-- File Structure -->
- <bean name="FileStructure" class="org.jboss.deployers.vfs.plugins.structure.file.FileStructure">
- <!-- Unless specified the default list of suffixes is -service.xml, -beans.xml, -ds.xml, -aop.xml -->
- <constructor>
- <parameter>
- <set elementClass="java.lang.String">
- <value>-service.xml</value>
- <value>-beans.xml</value>
- <value>-ds.xml</value>
- <value>-aop.xml</value>
- </set>
- </parameter>
- </constructor>
- </bean>
-
- <!-- POJO Deployment -->
- <bean name="BeanDeployer" class="org.jboss.deployers.vfs.deployer.kernel.BeanDeployer">
- <property name="type">beans</property>
- </bean>
- <bean name="KernelDeploymentDeployer" class="org.jboss.deployers.vfs.deployer.kernel.KernelDeploymentDeployer">
- <property name="type">beans</property>
- </bean>
- <bean name="BeanMetaDataDeployer" class="org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer">
- <constructor><parameter><inject bean="jboss.kernel:service=Kernel"/></parameter></constructor>
- <property name="type">beans</property>
- </bean>
-
- <!-- JMX Deployment -->
- <bean name="SARDeployer" class="org.jboss.system.deployers.SARDeployer">
- <property name="type">sar</property>
- </bean>
- <bean name="ServiceClassLoaderDeployer" class="org.jboss.embedded.ClassLoaderDeployer"/>
- <bean name="ServiceDeploymentDeployer" class="org.jboss.system.deployers.ServiceDeploymentDeployer">
- <property name="type">sar</property>
- </bean>
- <bean name="ServiceDeployer" class="org.jboss.system.deployers.ServiceDeployer">
- <constructor><parameter><inject bean="JMXKernel" property="serviceController"/></parameter></constructor>
- <property name="type">sar</property>
- </bean>
-
- <!-- A filter for excluding files from the scanner -->
- <bean name="DeploymentFilter" class="org.jboss.virtual.plugins.vfs.helpers.ExtensibleFilter">
- <!-- Files starting with theses strings are ignored -->
- <property name="prefixes">#,%,\,,.,_$</property>
- <!-- Files ending with theses strings are ignored -->
- <property name="suffixes">#,$,%,~,\,v,.BAK,.bak,.old,.orig,.tmp,.rej,.sh</property>
- <!-- Files matching with theses strings are ignored -->
- <property name="matches">.make.state,.nse_depinfo,CVS,CVS.admin,RCS,RCSLOG,SCCS,TAGS,core,tags</property>
- </bean>
-
- <!--
- JNDI Initialization of basic beans (NO REMOTING)
- -->
- <bean name="Naming" class="org.jnp.server.SingletonNamingServer"/>
- <bean name="java:comp" class="org.jboss.naming.JavaCompInitializer"/>
-
- <!-- register Naming bean with dispatcher just in case we want to have a remote JNDI connection -->
- <bean name="JndiRegistration" class="org.jboss.aspects.remoting.DispatcherRegistration">
- <property name="oid">JNDI</property>
- <property name="target"><inject bean="Naming"/></property>
- </bean>
-
- <!--
- Bootstrap old JMX-based core services
- setup deployers
- setup deploy/ directory
- -->
- <bean name="ResourcesToDeploy" class="org.jboss.embedded.DeploymentScanner">
- <property name="filter">
- <inject bean="DeploymentFilter"/>
- </property>
- <property name="mainDeployer">
- <inject bean="MainDeployer"/>
- </property>
- <property name="kernel">
- <inject bean="jboss.kernel:service=Kernel"/>
- </property>
- <property name="resources">
- <list elementClass="java.lang.String">
- <value>${jboss.embedded.bootstrap.resource.path}conf/jboss-service.xml</value>
- </list>
- </property>
- </bean>
-
- <bean name="UserTransaction" class="org.jboss.embedded.adapters.LocalOnlyUserTransaction"/>
-
- <bean name="UserTransactionBinding" class="org.jboss.naming.JndiBinder">
- <property name="target">
- <inject bean="UserTransaction"/>
- </property>
- <property name="bindTo">UserTransaction</property>
- <property name="serializable">false</property>
- </bean>
-
- <!-- FIXME EMB-2 -->
- <bean name="UserTransactionBinding2" class="org.jboss.naming.JndiBinder">
- <property name="target">
- <inject bean="UserTransaction"/>
- </property>
- <property name="bindTo">java:comp/UserTransaction</property>
- <property name="serializable">false</property>
- </bean>
-
-
- <bean name="ResourcesToDeploy2" class="org.jboss.embedded.DeploymentScanner">
- <property name="filter">
- <inject bean="DeploymentFilter"/>
- </property>
- <property name="mainDeployer">
- <inject bean="MainDeployer"/>
- </property>
- <property name="kernel">
- <inject bean="jboss.kernel:service=Kernel"/>
- </property>
- <property name="directoriesByResource">
- <list elementClass="java.lang.String">
- <value>${jboss.embedded.bootstrap.resource.path}conf/jboss-service.xml/../deployers</value>
- </list>
- </property>
- </bean>
- <bean name="ResourcesToDeploy3" class="org.jboss.embedded.DeploymentScanner">
- <property name="filter">
- <inject bean="DeploymentFilter"/>
- </property>
- <property name="mainDeployer">
- <inject bean="MainDeployer"/>
- </property>
- <property name="kernel">
- <inject bean="jboss.kernel:service=Kernel"/>
- </property>
- <property name="directoriesByResource">
- <list elementClass="java.lang.String">
- <value>${jboss.embedded.bootstrap.resource.path}conf/jboss-service.xml/../deploy</value>
- </list>
- </property>
- </bean>
-</deployment>
Deleted: branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/conf/jboss-service.xml
===================================================================
--- branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/conf/jboss-service.xml 2012-05-21 14:44:58 UTC (rev 14716)
+++ branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/conf/jboss-service.xml 2012-05-21 18:28:37 UTC (rev 14717)
@@ -1,132 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!-- $Id: jboss-service.xml 6916 2007-12-05 17:53:00Z pmuir $ -->
-
-<!-- ===================================================================== -->
-<!-- JBoss Server Configuration -->
-<!-- ===================================================================== -->
-
-<server>
-
- <!-- ==================================================================== -->
- <!-- Main Deployer -->
- <!-- ==================================================================== -->
- <mbean code="org.jboss.deployment.MainDeployer"
- name="jboss.system:service=MainDeployer">
- <!-- This is used to delegate the deployment handling -->
- <attribute name="KernelMainDeployer"><inject bean="MainDeployer" /></attribute>
- </mbean>
-
- <!-- ==================================================================== -->
- <!-- SAR Deployer -->
- <!-- ==================================================================== -->
- <mbean code="org.jboss.deployment.SARDeployer"
- name="jboss.system:service=ServiceDeployer">
- <depends>jboss.system:service=MainDeployer</depends>
- </mbean>
-
- <!-- ==================================================================== -->
- <!-- Security -->
- <!-- ==================================================================== -->
-
- <mbean code="org.jboss.security.plugins.SecurityConfig"
- name="jboss.security:service=SecurityConfig">
- <attribute name="LoginConfig">jboss.security:service=XMLLoginConfig</attribute>
- <depends>jboss.security:service=XMLLoginConfig</depends>
- </mbean>
- <mbean code="org.jboss.security.auth.login.XMLLoginConfig"
- name="jboss.security:service=XMLLoginConfig">
- <attribute name="ConfigResource">${jboss.embedded.bootstrap.resource.path}conf/login-config.xml</attribute>
- </mbean>
-
- <!-- JAAS security manager and realm mapping -->
- <mbean code="org.jboss.security.plugins.JaasSecurityManagerService"
- name="jboss.security:service=JaasSecurityManager">
- <!-- A flag which indicates whether the SecurityAssociation server mode
- is set on service creation. This is true by default since the
- SecurityAssociation should be thread local for multi-threaded server
- operation.
- -->
- <attribute name="ServerMode">true</attribute>
- <attribute name="SecurityManagerClassName">org.jboss.security.plugins.JaasSecurityManager</attribute>
- <attribute name="DefaultUnauthenticatedPrincipal">anonymous</attribute>
- <!-- DefaultCacheTimeout: Specifies the default timed cache policy timeout
- in seconds.
- If you want to disable caching of security credentials, set this to 0 to
- force authentication to occur every time. This has no affect if the
- AuthenticationCacheJndiName has been changed from the default value.
- -->
- <attribute name="DefaultCacheTimeout">1800</attribute>
- <!-- DefaultCacheResolution: Specifies the default timed cache policy
- resolution in seconds. This controls the interval at which the cache
- current timestamp is updated and should be less than the DefaultCacheTimeout
- in order for the timeout to be meaningful. This has no affect if the
- AuthenticationCacheJndiName has been changed from the default value.
- -->
- <attribute name="DefaultCacheResolution">60</attribute>
- <!-- DeepCopySubjectMode: This set the copy mode of subjects done by the
- security managers to be deep copies that makes copies of the subject
- principals and credentials if they are cloneable. It should be set to
- true if subject include mutable content that can be corrupted when
- multiple threads have the same identity and cache flushes/logout clearing
- the subject in one thread results in subject references affecting other
- threads.
- -->
- <attribute name="DeepCopySubjectMode">false</attribute>
- </mbean>
-
- <!-- Authorization manager-->
- <mbean code="org.jboss.security.plugins.AuthorizationManagerService"
- name="jboss.security:service=AuthorizationManager">
- <attribute name="AuthorizationManagerClassName">org.jboss.security.plugins.JBossAuthorizationManager</attribute>
- </mbean>
-
- <!-- ==================================================================== -->
- <!-- Transactions -->
- <!-- ==================================================================== -->
-
- <!-- JBossTS JTA -->
- <mbean code="com.arjuna.ats.jbossatx.jta.TransactionManagerService"
- name="jboss:service=TransactionManager">
- <attribute name="TransactionTimeout">300</attribute>
- <attribute name="ObjectStoreDir">${jboss.server.data.dir}/tx-object-store</attribute>
- </mbean>
-
- <mbean code="org.jboss.util.threadpool.BasicThreadPool"
- name="jboss.jca:service=WorkManagerThreadPool">
- <!-- The name that appears in thread names -->
- <attribute name="Name">WorkManager</attribute>
- <!-- The maximum amount of work in the queue -->
- <attribute name="MaximumQueueSize">1024</attribute>
- <!-- The maximum number of active threads -->
- <attribute name="MaximumPoolSize">100</attribute>
- <!-- How long to keep threads alive after their last work (default one minute) -->
- <attribute name="KeepAliveTime">60000</attribute>
- </mbean>
-
- <mbean code="org.jboss.resource.work.JBossWorkManager"
- name="jboss.jca:service=WorkManager">
- <depends optional-attribute-name="ThreadPoolName">jboss.jca:service=WorkManagerThreadPool</depends>
- <depends optional-attribute-name="XATerminatorName">jboss:service=TransactionManager</depends>
- </mbean>
-
- <!--
- | The CachedConnectionManager is used partly to relay started UserTransactions to
- | open connections so they may be enrolled in the new tx.
- -->
- <mbean code="org.jboss.resource.connectionmanager.CachedConnectionManager"
- name="jboss.jca:service=CachedConnectionManager">
- <depends optional-attribute-name="TransactionManagerServiceName">jboss:service=TransactionManager</depends>
-
- <!-- Enable connection close debug monitoring -->
- <attribute name="Debug">true</attribute>
-
- </mbean>
-
- <mbean code="org.jboss.naming.JNDIView"
- name="jboss:service=JNDIView">
- <!-- The HANamingService service name -->
- <attribute name="HANamingService">jboss:service=HAJNDI</attribute>
- </mbean>
-
-</server>
Deleted: branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/conf/jbossjta-properties.xml
===================================================================
--- branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/conf/jbossjta-properties.xml 2012-05-21 14:44:58 UTC (rev 14716)
+++ branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/conf/jbossjta-properties.xml 2012-05-21 18:28:37 UTC (rev 14717)
@@ -1,243 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<transaction-service>
- <properties depends="common" name="arjuna">
- <!--
- Transaction Reaper Timeout (default is 120000 ms).
- -->
- <property
- name="com.arjuna.ats.arjuna.coordinator.txReaperTimeout" value="120000"/>
- <!--
- Transaction Reaper Mode, can be: NORMAL or DYNAMIC (default is NORMAL).
- -->
- <property name="com.arjuna.ats.arjuna.coordinator.txReaperMode" value="DYNAMIC"/>
- <!--
- Transaction Reaper Cancel Wait Period (default is 500 ms, min is 10 msecs).
- -->
- <property
- name="com.arjuna.ats.arjuna.coordinator.txReaperCancelWaitPeriod" value="500"/>
- <!--
- Transaction Reaper Cancel Fail Wait Period (default is 500 ms, min is 10 msecs).
- -->
- <property
- name="com.arjuna.ats.arjuna.coordinator.txReaperCancelFailWaitPeriod" value="500"/>
- <!--
- Transaction Reaper Zombie Max (default is 8).
- -->
- <property
- name="com.arjuna.ats.arjuna.coordinator.txReaperZombieMax" value="8"/>
- <!--
- (default is NO)
- -->
- <property name="com.arjuna.ats.arjuna.coordinator.asyncCommit" value="NO"/>
- <!--
- (default is NO)
- -->
- <property name="com.arjuna.ats.arjuna.coordinator.asyncPrepare" value="NO"/>
- <!--
- (default is YES)
- -->
- <property
- name="com.arjuna.ats.arjuna.coordinator.commitOnePhase" value="YES"/>
- <!--
- (default is defaultStore)
- -->
- <property name="com.arjuna.ats.arjuna.objectstore.localOSRoot" value="defaultStore"/>
- <!--
- default is under user.home - must be writeable!)
- -->
- <property
- name="com.arjuna.ats.arjuna.objectstore.objectStoreDir" value="PutObjectStoreDirHere"/>
- <!--
- (default is ON)
- -->
- <property
- name="com.arjuna.ats.arjuna.objectstore.objectStoreSync" value="ON"/>
- <!--
- (default is ShadowNoFileLockStore)
- -->
- <property
- name="com.arjuna.ats.arjuna.objectstore.objectStoreType" value="ShadowNoFileLockStore"/>
- <!--
- (default is 255)
- -->
- <property
- name="com.arjuna.ats.arjuna.objectstore.hashedDirectories" value="255"/>
- <!--
- (default is ON)
- -->
- <property
- name="com.arjuna.ats.arjuna.objectstore.transactionSync" value="ON"/>
- <!--
- (Must be unique across all Arjuna instances.)
- -->
- <property name="com.arjuna.ats.arjuna.xa.nodeIdentifier" value="1"/>
- <!-- property
- name="com.arjuna.ats.arjuna.coordinator.actionStore"
- value="HashedActionStore"
- value="JDBCActionStore"
- -->
- <!-- property
- name="com.arjuna.ats.arjuna.objectstore.jdbcTxDbAccess"
- value="JDBCAccess"
- -->
- <!-- property
- name="com.arjuna.ats.arjuna.objectstore.objectStoreType"
- value="ShadowNoFileLockStore"
- value="JDBCStore"
- -->
- <!-- property
- name="com.arjuna.ats.arjuna.objectstore.jdbcUserDbAccess"
- value="JDBCAccess"
- -->
- <!-- property
- name="com.arjuna.ats.arjuna.objectstore.jdbcPoolSizeInitial"
- value="1"
- -->
- <!-- property
- name="com.arjuna.ats.arjuna.objectstore.jdbcPoolSizeMaximum"
- value="1"
- -->
- <!-- property
- name="com.arjuna.ats.arjuna.objectstore.jdbcPoolPutConnections"
- value="false"
- -->
- <!-- property
- name="com.arjuna.ats.arjuna.internal.arjuna.objectstore.cacheStore.size"
- value=""
- -->
- <!-- property
- name="com.arjuna.ats.arjuna.internal.arjuna.objectstore.cacheStore.period"
- value=""
- -->
- <!--
- The location for creating temporary files, e.g., Uids.
- Default is under user.home.
- IMPORTANT: make sure the directory is lockable, e.g., /tmp on Unix
- may not be!
- -->
- <!--
- <property
- name="com.arjuna.ats.arjuna.common.varDir"
- value="var"/>
- -->
- </properties>
- <properties name="common">
- <!-- CLF 2.0 properties -->
- <property name="com.arjuna.common.util.logging.DebugLevel"
- type="System" value="0x00000000"/>
- <property name="com.arjuna.common.util.logging.FacilityLevel"
- type="System" value="0xffffffff"/>
- <property name="com.arjuna.common.util.logging.VisibilityLevel"
- type="System" value="0xffffffff"/>
- <property name="com.arjuna.common.util.logger" type="System" value="log4j"/>
- </properties>
- <properties depends="arjuna" name="txoj">
- <!--
- (default is LockStore of installation - must be writeable!)
- -->
- <!--
- <property
- name="com.arjuna.ats.txoj.lockstore.lockStoreDir"
- value="LockStore"/>
- -->
- <!--
- (default is BasicLockStore)
- -->
- <property name="com.arjuna.ats.txoj.lockstore.lockStoreType" value="BasicLockStore"/>
- <!--
- (default is NO)
- -->
- <property name="com.arjuna.ats.txoj.lockstore.multipleLockStore" value="NO"/>
- <!--
- (default is YES)
- -->
- <property name="com.arjuna.ats.txoj.lockstore.singleLockStore" value="YES"/>
- <!--
- (default is YES)
- -->
- <property
- name="com.arjuna.ats.txoj.lockstore.allowNestedLocking" value="YES"/>
- </properties>
- <properties depends="arjuna" name="jta">
- <!--
- Support subtransactions in the JTA layer?
- Default is NO.
- -->
- <property name="com.arjuna.ats.jta.supportSubtransactions" value="NO"/>
- <property name="com.arjuna.ats.jta.jtaTMImplementation" value="com.arjuna.ats.internal.jta.transaction.arjunacore.TransactionManagerImple"/>
- <!--
- com.arjuna.ats.internal.jta.transaction.jts.TransactionManagerImple
- -->
- <property name="com.arjuna.ats.jta.jtaUTImplementation" value="com.arjuna.ats.internal.jta.transaction.arjunacore.UserTransactionImple"/>
- <!--
- com.arjuna.ats.internal.jta.transaction.jts.UserTransactionImple
- -->
- </properties>
- <properties depends="arjuna,txoj,jta" name="recoverymanager">
- <!--
- Properties used only by the RecoveryManager.
- -->
- <!--
- Periodic recovery settings.
- Time values in this section are in seconds.
- -->
- <!--
- Interval in seconds between initiating the periodic recovery modules.
- Default is 120 seconds.
- -->
- <property
- name="com.arjuna.ats.arjuna.recovery.periodicRecoveryPeriod" value="120"/>
- <!--
- Interval in seconds between first and second pass of periodic recovery.
- Default is 10 seconds.
- -->
- <property
- name="com.arjuna.ats.arjuna.recovery.recoveryBackoffPeriod" value="10"/>
- <!--
- Periodic recovery modules to use. Invoked in sort-order of names.
- -->
- <property
- name="com.arjuna.ats.arjuna.recovery.recoveryExtension1" value="com.arjuna.ats.internal.arjuna.recovery.AtomicActionRecoveryModule"/>
- <property
- name="com.arjuna.ats.arjuna.recovery.recoveryExtension2" value="com.arjuna.ats.internal.txoj.recovery.TORecoveryModule"/>
- <property
- name="com.arjuna.ats.arjuna.recovery.recoveryExtension3" value="com.arjuna.ats.internal.jta.recovery.arjunacore.XARecoveryModule"/>
- <!--
- Expired entry removal
- -->
- <!--
- Expiry scanners to use (order of invocation is random).
- Names must begin with "com.arjuna.ats.arjuna.recovery.expiryScanner"
- -->
- <property
- name="com.arjuna.ats.arjuna.recovery.expiryScannerTransactionStatusManager" value="com.arjuna.ats.internal.arjuna.recovery.ExpiredTransactionStatusManagerScanner"/>
- <!--
- Interval, in hours, between running the expiry scanners.
- This can be quite long. The absolute value determines the interval -
- if the value is negative, the scan will NOT be run until after one
- interval has elapsed. If positive the first scan will be immediately
- after startup. Zero will prevent any scanning.
- Default = 12 = run immediately, then every 12 hours.
- -->
- <property
- name="com.arjuna.ats.arjuna.recovery.expiryScanInterval" value="12"/>
- <!--
- Age, in hours, for removal of transaction status manager item.
- This should be longer than any ts-using process will remain running.
- Zero = Never removed. Default is 12.
- -->
- <property
- name="com.arjuna.ats.arjuna.recovery.transactionStatusManagerExpiryTime" value="12"/>
- <!--
- Use this to fix the port on which the TransactionStatusManager listens,
- The default behaviour is to use any free port.
- -->
- <property
- name="com.arjuna.ats.arjuna.recovery.transactionStatusManagerPort" value="0"/>
- </properties>
- <properties depends="jta" name="jdbc">
- <!--
- property name="com.arjuna.ats.jdbc.isolationLevel" value="TRANSACTION_SERIALIZABLE"/>
- -->
- </properties>
-</transaction-service>
Deleted: branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/conf/login-config.xml
===================================================================
--- branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/conf/login-config.xml 2012-05-21 14:44:58 UTC (rev 14716)
+++ branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/conf/login-config.xml 2012-05-21 18:28:37 UTC (rev 14717)
@@ -1,86 +0,0 @@
-<?xml version='1.0'?>
-
-<!DOCTYPE policy PUBLIC
- "-//JBoss//DTD JBOSS Security Config 3.0//EN"
- "http://www.jboss.org/j2ee/dtd/security_config.dtd">
-
-<!-- The XML based JAAS login configuration read by the
-org.jboss.security.auth.login.XMLLoginConfig mbean. Add
-an application-policy element for each security domain.
-
-The outline of the application-policy is:
-<application-policy name="security-domain-name">
- <authentication>
- <login-module code="login.module1.class.name" flag="control_flag">
- <module-option name = "option1-name">option1-value</module-option>
- <module-option name = "option2-name">option2-value</module-option>
- ...
- </login-module>
-
- <login-module code="login.module2.class.name" flag="control_flag">
- ...
- </login-module>
- ...
- </authentication>
-</application-policy>
-
-$Revision: 6916 $
--->
-
-<policy>
- <application-policy name="HsqlDbRealm">
- <authentication>
- <login-module code="org.jboss.resource.security.ConfiguredIdentityLoginModule"
- flag="required">
- <module-option name="principal">sa</module-option>
- <module-option name="userName">sa</module-option>
- <module-option name="password"></module-option>
- <module-option name="managedConnectionFactoryName">jboss.jca:service=LocalTxCM,name=DefaultDS</module-option>
- </login-module>
- </authentication>
- </application-policy>
-
- <application-policy name="messaging">
- <authentication>
- <login-module code="org.jboss.security.auth.spi.UsersRolesLoginModule" flag = "required">
- <module-option name="unauthenticatedIdentity">guest</module-option>
- <module-option name="usersProperties">conf/props/messaging-users.properties</module-option>
- <module-option name="rolesProperties">conf/props/messaging-roles.properties</module-option>
- </login-module>
- </authentication>
- </application-policy>
-
-
- <!-- Used by clients within the application server VM such as
- mbeans and servlets that access EJBs.
- -->
- <application-policy name="client-login">
- <authentication>
- <login-module code="org.jboss.security.ClientLoginModule"
- flag="required">
- <!-- Any existing security context will be restored on logout -->
- <module-option name="restore-login-identity">true</module-option>
- </login-module>
- </authentication>
- </application-policy>
-
- <application-policy name="other">
- <!-- A simple server login module, which can be used when the number
- of users is relatively small. It uses two properties files:
- users.properties, which holds users (key) and their password (value).
- roles.properties, which holds users (key) and a comma-separated list of
- their roles (value).
- The unauthenticatedIdentity property defines the name of the principal
- that will be used when a null username and password are presented as is
- the case for an unuathenticated web client or MDB. If you want to
- allow such users to be authenticated add the property, e.g.,
- unauthenticatedIdentity="nobody"
- -->
- <authentication>
- <login-module code="org.jboss.security.auth.spi.UsersRolesLoginModule"
- flag="required"/>
- </authentication>
- </application-policy>
-
-</policy>
-
Deleted: branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/conf/props/messaging-roles.properties
===================================================================
--- branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/conf/props/messaging-roles.properties 2012-05-21 14:44:58 UTC (rev 14716)
+++ branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/conf/props/messaging-roles.properties 2012-05-21 18:28:37 UTC (rev 14717)
@@ -1,4 +0,0 @@
-#
-# user=role1,role2,...
-#
-guest=guest
Deleted: branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/conf/props/messaging-users.properties
===================================================================
--- branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/conf/props/messaging-users.properties 2012-05-21 14:44:58 UTC (rev 14716)
+++ branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/conf/props/messaging-users.properties 2012-05-21 18:28:37 UTC (rev 14717)
@@ -1,4 +0,0 @@
-#
-# user=password
-#
-guest=guest
Deleted: branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/ejb3-interceptors-aop.xml
===================================================================
--- branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/ejb3-interceptors-aop.xml 2012-05-21 14:44:58 UTC (rev 14716)
+++ branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/ejb3-interceptors-aop.xml 2012-05-21 18:28:37 UTC (rev 14717)
@@ -1,392 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE aop PUBLIC
- "-//JBoss//DTD JBOSS AOP 1.0//EN"
- "http://labs.jboss.com/portal/jbossaop/dtd/jboss-aop_1_0.dtd">
-
-<aop>
- <interceptor class="org.jboss.aspects.remoting.InvokeRemoteInterceptor" scope="PER_VM"/>
- <interceptor class="org.jboss.aspects.security.SecurityClientInterceptor" scope="PER_VM"/>
- <interceptor class="org.jboss.aspects.tx.ClientTxPropagationInterceptor" scope="PER_VM"/>
- <interceptor class="org.jboss.ejb3.remoting.IsLocalInterceptor" scope="PER_VM"/>
- <interceptor class="org.jboss.aspects.remoting.ClusterChooserInterceptor" scope="PER_VM"/>
-
- <interceptor class="org.jboss.aspects.tx.TxPropagationInterceptor" scope="PER_VM"/>
-
- <stack name="ServiceClientInterceptors">
- <interceptor-ref name="org.jboss.ejb3.remoting.IsLocalInterceptor"/>
- <interceptor-ref name="org.jboss.aspects.security.SecurityClientInterceptor"/>
- <interceptor-ref name="org.jboss.aspects.tx.ClientTxPropagationInterceptor"/>
- <interceptor-ref name="org.jboss.aspects.remoting.InvokeRemoteInterceptor"/>
- </stack>
-
- <stack name="AsynchronousStatelessSessionClientInterceptors">
- <interceptor-ref name="org.jboss.ejb3.remoting.IsLocalInterceptor"/>
- <interceptor-ref name="org.jboss.aspects.security.SecurityClientInterceptor"/>
- <interceptor-ref name="org.jboss.aspects.tx.ClientTxPropagationInterceptor"/>
- <interceptor-ref name="org.jboss.aspects.remoting.InvokeRemoteInterceptor"/>
- </stack>
-
- <stack name="AsynchronousStatefulSessionClientInterceptors">
- <interceptor-ref name="org.jboss.ejb3.remoting.IsLocalInterceptor"/>
- <interceptor-ref name="org.jboss.aspects.security.SecurityClientInterceptor"/>
- <interceptor-ref name="org.jboss.aspects.tx.ClientTxPropagationInterceptor"/>
- <interceptor-ref name="org.jboss.aspects.remoting.InvokeRemoteInterceptor"/>
- </stack>
-
- <stack name="StatelessSessionClientInterceptors">
- <interceptor-ref name="org.jboss.ejb3.remoting.IsLocalInterceptor"/>
- <interceptor-ref name="org.jboss.aspects.security.SecurityClientInterceptor"/>
- <interceptor-ref name="org.jboss.aspects.tx.ClientTxPropagationInterceptor"/>
- <interceptor-ref name="org.jboss.aspects.remoting.InvokeRemoteInterceptor"/>
- </stack>
-
- <stack name="StatefulSessionClientInterceptors">
- <interceptor-ref name="org.jboss.ejb3.remoting.IsLocalInterceptor"/>
- <interceptor-ref name="org.jboss.aspects.security.SecurityClientInterceptor"/>
- <interceptor-ref name="org.jboss.aspects.tx.ClientTxPropagationInterceptor"/>
- <interceptor-ref name="org.jboss.aspects.remoting.InvokeRemoteInterceptor"/>
- </stack>
-
- <stack name="ClusteredStatelessSessionClientInterceptors">
- <interceptor-ref name="org.jboss.ejb3.remoting.IsLocalInterceptor"/>
- <interceptor-ref name="org.jboss.aspects.security.SecurityClientInterceptor"/>
- <interceptor-ref name="org.jboss.aspects.tx.ClientTxPropagationInterceptor"/>
- <interceptor-ref name="org.jboss.aspects.remoting.ClusterChooserInterceptor"/>
- <interceptor-ref name="org.jboss.aspects.remoting.InvokeRemoteInterceptor"/>
- </stack>
-
- <stack name="ClusteredStatefulSessionClientInterceptors">
- <interceptor-ref name="org.jboss.ejb3.remoting.IsLocalInterceptor"/>
- <interceptor-ref name="org.jboss.aspects.security.SecurityClientInterceptor"/>
- <interceptor-ref name="org.jboss.aspects.tx.ClientTxPropagationInterceptor"/>
- <interceptor-ref name="org.jboss.aspects.remoting.ClusterChooserInterceptor"/>
- <interceptor-ref name="org.jboss.aspects.remoting.InvokeRemoteInterceptor"/>
- </stack>
-
- <interceptor class="org.jboss.ejb3.asynchronous.AsynchronousInterceptor" scope="PER_CLASS"/>
- <interceptor class="org.jboss.ejb3.ENCPropagationInterceptor" scope="PER_VM"/>
- <interceptor name="Basic Authorization" factory="org.jboss.ejb3.security.RoleBasedAuthorizationInterceptorFactory" scope="PER_CLASS"/>
- <interceptor name="JACC Authorization" factory="org.jboss.ejb3.security.JaccAuthorizationInterceptorFactory" scope="PER_CLASS"/>
- <interceptor factory="org.jboss.ejb3.security.AuthenticationInterceptorFactory" scope="PER_CLASS"/>
- <interceptor factory="org.jboss.ejb3.security.RunAsSecurityInterceptorFactory" scope="PER_CLASS"/>
- <interceptor class="org.jboss.ejb3.entity.ExtendedPersistenceContextPropagationInterceptor" scope="PER_VM"/>
- <interceptor class="org.jboss.ejb3.stateless.StatelessInstanceInterceptor" scope="PER_VM"/>
- <interceptor class="org.jboss.ejb3.stateful.StatefulInstanceInterceptor" scope="PER_VM"/>
- <interceptor class="org.jboss.ejb3.stateful.SessionSynchronizationInterceptor" scope="PER_VM"/>
- <interceptor class="org.jboss.ejb3.service.ServiceSingletonInterceptor" scope="PER_VM"/>
- <interceptor class="org.jboss.ejb3.cache.StatefulReplicationInterceptor" scope="PER_VM"/>
- <interceptor factory="org.jboss.ejb3.stateful.StatefulRemoveFactory" scope="PER_CLASS_JOINPOINT"/>
- <interceptor factory="org.jboss.ejb3.tx.TxInterceptorFactory" scope="PER_CLASS_JOINPOINT"/>
- <interceptor factory="org.jboss.ejb3.interceptor.EJB3InterceptorsFactory" scope="PER_CLASS_JOINPOINT"/>
- <interceptor factory="org.jboss.ejb3.remoting.ReplicantsManagerInterceptorFactory" scope="PER_CLASS"/>
- <interceptor class="org.jboss.ejb3.AllowedOperationsInterceptor" scope="PER_VM"/>
- <interceptor factory="org.jboss.ejb3.mdb.CurrentMessageInjectorInterceptorFactory" scope="PER_CLASS"/>
- <interceptor class="org.jboss.ejb3.entity.TransactionScopedEntityManagerInterceptor" scope="PER_VM"/>
-
- <domain name="Stateless Bean">
- <bind pointcut="execution(public * *->*(..))">
- <interceptor-ref name="org.jboss.ejb3.asynchronous.AsynchronousInterceptor"/>
- <interceptor-ref name="org.jboss.ejb3.ENCPropagationInterceptor"/>
- <interceptor-ref name="org.jboss.ejb3.security.AuthenticationInterceptorFactory"/>
- </bind>
- <bind pointcut="execution(public * @org.jboss.ejb3.annotation.SecurityDomain->*(..))">
- <interceptor-ref name="Basic Authorization"/>
- </bind>
- <bind pointcut="execution(public * *->*(..))">
- <interceptor-ref name="org.jboss.ejb3.security.RunAsSecurityInterceptorFactory"/>
- </bind>
- <bind pointcut="execution(public * @org.jboss.ejb3.annotation.Clustered->*(..))">
- <interceptor-ref name="org.jboss.ejb3.remoting.ReplicantsManagerInterceptorFactory"/>
- </bind>
- <bind pointcut="execution(public * *->*(..))">
- <interceptor-ref name="org.jboss.ejb3.stateless.StatelessInstanceInterceptor"/>
- <interceptor-ref name="org.jboss.aspects.tx.TxPropagationInterceptor"/>
- <interceptor-ref name="org.jboss.ejb3.tx.TxInterceptorFactory"/>
- <interceptor-ref name="org.jboss.ejb3.AllowedOperationsInterceptor"/>
- <interceptor-ref name="org.jboss.ejb3.entity.TransactionScopedEntityManagerInterceptor"/>
- <interceptor-ref name="org.jboss.ejb3.interceptor.EJB3InterceptorsFactory"/>
- </bind>
- <annotation expr="!class((a)org.jboss.ejb3.annotation.Pool)">
- @org.jboss.ejb3.annotation.Pool (value="ThreadlocalPool", maxSize=30, timeout=10000)
- </annotation>
- <annotation expr="!class((a)org.jboss.ejb3.annotation.JndiBindingPolicy)">
- @org.jboss.ejb3.annotation.JndiBindingPolicy (policy=org.jboss.ejb3.jndipolicy.impl.PackagingBasedJndiBindingPolicy.class)
- </annotation>
- </domain>
-
- <domain name="JACC Stateless Bean">
- <bind pointcut="execution(public * *->*(..))">
- <interceptor-ref name="org.jboss.ejb3.asynchronous.AsynchronousInterceptor"/>
- <interceptor-ref name="org.jboss.ejb3.ENCPropagationInterceptor"/>
- <interceptor-ref name="org.jboss.ejb3.security.AuthenticationInterceptorFactory"/>
- </bind>
- <bind pointcut="execution(public * @org.jboss.ejb3.annotation.SecurityDomain->*(..))">
- <interceptor-ref name="JACC Authorization"/>
- </bind>
- <bind pointcut="execution(public * *->*(..))">
- <interceptor-ref name="org.jboss.ejb3.security.RunAsSecurityInterceptorFactory"/>
- </bind>
- <bind pointcut="execution(public * @org.jboss.ejb3.annotation.Clustered->*(..))">
- <interceptor-ref name="org.jboss.ejb3.remoting.ReplicantsManagerInterceptorFactory"/>
- </bind>
- <bind pointcut="execution(public * *->*(..))">
- <interceptor-ref name="org.jboss.ejb3.stateless.StatelessInstanceInterceptor"/>
- <interceptor-ref name="org.jboss.aspects.tx.TxPropagationInterceptor"/>
- <interceptor-ref name="org.jboss.ejb3.tx.TxInterceptorFactory"/>
- <interceptor-ref name="org.jboss.ejb3.AllowedOperationsInterceptor"/>
- <interceptor-ref name="org.jboss.ejb3.entity.TransactionScopedEntityManagerInterceptor"/>
- <interceptor-ref name="org.jboss.ejb3.interceptor.EJB3InterceptorsFactory"/>
- </bind>
- <annotation expr="!class((a)org.jboss.ejb3.annotation.Pool)">
- @org.jboss.ejb3.annotation.Pool (value="ThreadlocalPool", maxSize=30, timeout=10000)
- </annotation>
- <annotation expr="!class((a)org.jboss.ejb3.annotation.JndiBindingPolicy)">
- @org.jboss.ejb3.annotation.JndiBindingPolicy (policy=org.jboss.ejb3.jndipolicy.impl.PackagingBasedJndiBindingPolicy.class)
- </annotation>
- </domain>
-
- <domain name="Base Stateful Bean">
- <bind pointcut="execution(public * *->*(..))">
- <interceptor-ref name="org.jboss.ejb3.asynchronous.AsynchronousInterceptor"/>
- <interceptor-ref name="org.jboss.ejb3.ENCPropagationInterceptor"/>
- <interceptor-ref name="org.jboss.ejb3.security.AuthenticationInterceptorFactory"/>
- </bind>
- <bind pointcut="execution(public * @org.jboss.ejb3.annotation.SecurityDomain->*(..))">
- <interceptor-ref name="Basic Authorization"/>
- </bind>
- <bind pointcut="execution(public * *->*(..))">
- <interceptor-ref name="org.jboss.ejb3.security.RunAsSecurityInterceptorFactory"/>
- </bind>
- <bind pointcut="execution(public * @org.jboss.ejb3.annotation.Clustered->*(..))">
- <interceptor-ref name="org.jboss.ejb3.remoting.ReplicantsManagerInterceptorFactory"/>
- </bind>
- <bind pointcut="execution(public * *->@javax.ejb.Remove(..))">
- <interceptor-ref name="org.jboss.ejb3.stateful.StatefulRemoveFactory"/>
- </bind>
- <bind pointcut="execution(public * *->*(..))">
- <interceptor-ref name="org.jboss.ejb3.stateful.StatefulInstanceInterceptor"/>
- <interceptor-ref name="org.jboss.aspects.tx.TxPropagationInterceptor"/>
- <interceptor-ref name="org.jboss.ejb3.tx.TxInterceptorFactory"/>
- <interceptor-ref name="org.jboss.ejb3.AllowedOperationsInterceptor"/>
- </bind>
- <bind pointcut="execution(public * $instanceof{javax.ejb.SessionSynchronization}->*(..))">
- <interceptor-ref name="org.jboss.ejb3.stateful.SessionSynchronizationInterceptor"/>
- </bind>
- <bind pointcut="execution(public * *->*(..))">
- <interceptor-ref name="org.jboss.ejb3.entity.TransactionScopedEntityManagerInterceptor"/>
- <interceptor-ref name="org.jboss.ejb3.entity.ExtendedPersistenceContextPropagationInterceptor"/>
- </bind>
-
- <bind pointcut="execution(public * @org.jboss.ejb3.annotation.Clustered->*(..)) AND !execution(public * *->@javax.ejb.Remove(..))">
- <interceptor-ref name="org.jboss.ejb3.cache.StatefulReplicationInterceptor"/>
- </bind>
-
- <bind pointcut="execution(public * *->*(..))">
- <interceptor-ref name="org.jboss.ejb3.interceptor.EJB3InterceptorsFactory"/>
- </bind>
-
- <annotation expr="!class((a)org.jboss.ejb3.annotation.Pool)">
- @org.jboss.ejb3.annotation.Pool (value="ThreadlocalPool", maxSize=30, timeout=10000)
- </annotation>
- <annotation expr="!class((a)org.jboss.ejb3.annotation.JndiBindingPolicy)">
- @org.jboss.ejb3.annotation.JndiBindingPolicy (policy=org.jboss.ejb3.jndipolicy.impl.PackagingBasedJndiBindingPolicy.class)
- </annotation>
- </domain>
-
- <domain name="Stateful Bean" extends="Base Stateful Bean" inheritBindings="true">
- <!-- NON Clustered cache configuration -->
- <annotation expr="!class((a)org.jboss.ejb3.annotation.Cache) AND !class((a)org.jboss.ejb3.annotation.Clustered)">
- @org.jboss.ejb3.annotation.Cache ("SimpleStatefulCache")
- </annotation>
- <annotation expr="!class((a)org.jboss.ejb3.annotation.PersistenceManager) AND !class((a)org.jboss.ejb3.annotation.Clustered)">
- @org.jboss.ejb3.annotation.PersistenceManager ("StatefulSessionFilePersistenceManager")
- </annotation>
- <annotation expr="!class((a)org.jboss.ejb3.annotation.CacheConfig) AND !class((a)org.jboss.ejb3.annotation.Clustered)">
- @org.jboss.ejb3.annotation.CacheConfig (maxSize=100000, idleTimeoutSeconds=300, removalTimeoutSeconds=0)
- </annotation>
-
- <!-- Clustered cache configuration -->
- <annotation expr="!class((a)org.jboss.ejb3.annotation.Cache) AND class((a)org.jboss.ejb3.annotation.Clustered)">
- @org.jboss.ejb3.annotation.Cache ("StatefulTreeCache")
- </annotation>
- <annotation expr="!class((a)org.jboss.ejb3.annotation.CacheConfig) AND class((a)org.jboss.ejb3.annotation.Clustered)">
- @org.jboss.ejb3.annotation.CacheConfig (name="jboss.cache:service=EJB3SFSBClusteredCache", maxSize=100000, idleTimeoutSeconds=300, removalTimeoutSeconds=0)
- </annotation>
- </domain>
-
- <domain name="JACC Stateful Bean">
- <bind pointcut="execution(public * *->*(..))">
- <interceptor-ref name="org.jboss.ejb3.asynchronous.AsynchronousInterceptor"/>
- <interceptor-ref name="org.jboss.ejb3.ENCPropagationInterceptor"/>
- <interceptor-ref name="org.jboss.ejb3.security.AuthenticationInterceptorFactory"/>
- </bind>
- <bind pointcut="execution(public * @org.jboss.ejb3.annotation.SecurityDomain->*(..))">
- <interceptor-ref name="JACC Authorization"/>
- </bind>
- <bind pointcut="execution(public * *->*(..))">
- <interceptor-ref name="org.jboss.ejb3.security.RunAsSecurityInterceptorFactory"/>
- </bind>
- <bind pointcut="execution(public * @org.jboss.ejb3.annotation.Clustered->*(..))">
- <interceptor-ref name="org.jboss.ejb3.remoting.ReplicantsManagerInterceptorFactory"/>
- </bind>
- <bind pointcut="execution(public * *->@javax.ejb.Remove(..))">
- <interceptor-ref name="org.jboss.ejb3.stateful.StatefulRemoveFactory"/>
- </bind>
- <bind pointcut="execution(public * *->*(..))">
- <interceptor-ref name="org.jboss.ejb3.stateful.StatefulInstanceInterceptor"/>
- <interceptor-ref name="org.jboss.aspects.tx.TxPropagationInterceptor"/>
- <interceptor-ref name="org.jboss.ejb3.tx.TxInterceptorFactory"/>
- <interceptor-ref name="org.jboss.ejb3.AllowedOperationsInterceptor"/>
- </bind>
- <bind pointcut="execution(public * $instanceof{javax.ejb.SessionSynchronization}->*(..))">
- <interceptor-ref name="org.jboss.ejb3.stateful.SessionSynchronizationInterceptor"/>
- </bind>
- <bind pointcut="execution(public * *->*(..))">
- <interceptor-ref name="org.jboss.ejb3.entity.TransactionScopedEntityManagerInterceptor"/>
- <interceptor-ref name="org.jboss.ejb3.entity.ExtendedPersistenceContextPropagationInterceptor"/>
- <interceptor-ref name="org.jboss.ejb3.interceptor.EJB3InterceptorsFactory"/>
- </bind>
-
- <bind pointcut="execution(public * @org.jboss.ejb3.annotation.Clustered->*(..)) AND !execution(public * *->@javax.ejb.Remove(..))">
- <interceptor-ref name="org.jboss.ejb3.cache.StatefulReplicationInterceptor"/>
- </bind>
- <annotation expr="!class((a)org.jboss.ejb3.annotation.Pool)">
- @org.jboss.ejb3.annotation.Pool (value="ThreadlocalPool", maxSize=30, timeout=10000)
- </annotation>
- <annotation expr="!class((a)org.jboss.ejb3.annotation.JndiBindingPolicy)">
- @org.jboss.ejb3.annotation.JndiBindingPolicy (policy=org.jboss.ejb3.jndipolicy.impl.PackagingBasedJndiBindingPolicy.class)
- </annotation>
-
- <!-- NON Clustered cache configuration -->
- <annotation expr="!class((a)org.jboss.ejb3.annotation.Cache) AND !class((a)org.jboss.ejb3.annotation.Clustered)">
- @org.jboss.ejb3.annotation.Cache ("SimpleStatefulCache")
- </annotation>
- <annotation expr="!class((a)org.jboss.ejb3.annotation.PersistenceManager) AND !class((a)org.jboss.ejb3.annotation.Clustered)">
- @org.jboss.ejb3.annotation.PersistenceManager ("StatefulSessionFilePersistenceManager")
- </annotation>
- <annotation expr="!class((a)org.jboss.ejb3.annotation.CacheConfig) AND !class((a)org.jboss.ejb3.annotation.Clustered)">
- @org.jboss.ejb3.annotation.CacheConfig (maxSize=100000, idleTimeoutSeconds=300, removalTimeoutSeconds=0)
- </annotation>
-
- <!-- Clustered cache configuration -->
- <annotation expr="!class((a)org.jboss.ejb3.annotation.Cache) AND class((a)org.jboss.ejb3.annotation.Clustered)">
- @org.jboss.ejb3.annotation.Cache ("StatefulTreeCache")
- </annotation>
- <annotation expr="!class((a)org.jboss.ejb3.annotation.CacheConfig) AND class((a)org.jboss.ejb3.annotation.Clustered)">
- @org.jboss.ejb3.annotation.CacheConfig (name="jboss.cache:service=EJB3SFSBClusteredCache", maxSize=100000, idleTimeoutSeconds=300, removalTimeoutSeconds=0)
- </annotation>
- </domain>
-
- <domain name="Embedded Stateful Bean" extends="Base Stateful Bean" inheritBindings="true">
- <!-- NON Clustered cache configuration -->
- <annotation expr="!class((a)org.jboss.ejb3.annotation.Cache)">
- @org.jboss.ejb3.annotation.Cache ("NoPassivationCache")
- </annotation>
- <annotation expr="!class((a)org.jboss.ejb3.annotation.JndiBindingPolicy)">
- @org.jboss.ejb3.annotation.JndiBindingPolicy (policy=org.jboss.ejb3.jndipolicy.impl.PackagingBasedJndiBindingPolicy.class)
- </annotation>
-
- </domain>
-
- <domain name="Message Driven Bean">
- <bind pointcut="execution(public * *->*(..))">
- <interceptor-ref name="org.jboss.ejb3.security.AuthenticationInterceptorFactory"/>
- <interceptor-ref name="org.jboss.ejb3.security.RunAsSecurityInterceptorFactory"/>
- </bind>
- <!-- TODO: Authorization? -->
- <bind pointcut="execution(public * *->*(..))">
- <interceptor-ref name="org.jboss.ejb3.stateless.StatelessInstanceInterceptor"/>
- <interceptor-ref name="org.jboss.ejb3.tx.TxInterceptorFactory"/>
- <interceptor-ref name="org.jboss.ejb3.AllowedOperationsInterceptor"/>
- <interceptor-ref name="org.jboss.ejb3.entity.TransactionScopedEntityManagerInterceptor"/>
- <interceptor-ref name="org.jboss.ejb3.interceptor.EJB3InterceptorsFactory"/>
- </bind>
- <annotation expr="!class((a)org.jboss.ejb3.annotation.Pool)">
- @org.jboss.ejb3.annotation.Pool (value="StrictMaxPool", maxSize=15, timeout=10000)
- </annotation>
- <annotation expr="!class((a)org.jboss.ejb3.annotation.JndiBindingPolicy)">
- @org.jboss.ejb3.annotation.JndiBindingPolicy (policy=org.jboss.ejb3.jndipolicy.impl.PackagingBasedJndiBindingPolicy.class)
- </annotation>
- </domain>
-
- <domain name="Consumer Bean">
- <bind pointcut="execution(public * *->*(..))">
- <interceptor-ref name="org.jboss.ejb3.security.RunAsSecurityInterceptorFactory"/>
- </bind>
- <bind pointcut="execution(public * *->*(..))">
- <interceptor-ref name="org.jboss.ejb3.stateless.StatelessInstanceInterceptor"/>
- <interceptor-ref name="org.jboss.ejb3.tx.TxInterceptorFactory"/>
- <interceptor-ref name="org.jboss.ejb3.AllowedOperationsInterceptor"/>
- <interceptor-ref name="org.jboss.ejb3.entity.TransactionScopedEntityManagerInterceptor"/>
- </bind>
- <bind pointcut="execution(public * *->*(..)) AND (has(* *->@org.jboss.ejb3.annotation.CurrentMessage(..)) OR hasfield(* *->@org.jboss.ejb3.annotation.CurrentMessage))">
- <interceptor-ref name="org.jboss.ejb3.mdb.CurrentMessageInjectorInterceptorFactory"/>
- </bind>
- <bind pointcut="execution(public * *->*(..))">
- <interceptor-ref name="org.jboss.ejb3.interceptor.EJB3InterceptorsFactory"/>
- </bind>
- <annotation expr="!class((a)org.jboss.ejb3.annotation.Pool)">
- @org.jboss.ejb3.annotation.Pool (value="StrictMaxPool", maxSize=15, timeout=10000)
- </annotation>
- <annotation expr="!class((a)org.jboss.ejb3.annotation.JndiBindingPolicy)">
- @org.jboss.ejb3.annotation.JndiBindingPolicy (policy=org.jboss.ejb3.jndipolicy.impl.PackagingBasedJndiBindingPolicy.class)
- </annotation>
- </domain>
-
- <domain name="Service Bean">
- <bind pointcut="execution(public * *->*(..))">
- <interceptor-ref name="org.jboss.ejb3.asynchronous.AsynchronousInterceptor"/>
- <interceptor-ref name="org.jboss.ejb3.ENCPropagationInterceptor"/>
- </bind>
- <bind pointcut="!execution(* *->create()) AND !execution(* *->start()) AND !execution(*->new(..))">
- <interceptor-ref name="org.jboss.ejb3.security.AuthenticationInterceptorFactory"/>
- </bind>
- <bind pointcut="execution(public * @org.jboss.ejb3.annotation.SecurityDomain->*(..))">
- <interceptor-ref name="Basic Authorization"/>
- </bind>
- <bind pointcut="execution(public * *->*(..))">
- <interceptor-ref name="org.jboss.ejb3.security.RunAsSecurityInterceptorFactory"/>
- </bind>
- <bind pointcut="execution(public * *->*(..))">
- <interceptor-ref name="org.jboss.aspects.tx.TxPropagationInterceptor"/>
- <interceptor-ref name="org.jboss.ejb3.tx.TxInterceptorFactory"/>
- <interceptor-ref name="org.jboss.ejb3.AllowedOperationsInterceptor"/>
- <interceptor-ref name="org.jboss.ejb3.entity.TransactionScopedEntityManagerInterceptor"/>
- </bind>
- <bind pointcut="execution(public * *->*(..)) AND !execution(* *->create()) AND !execution(* *->start())">
- <interceptor-ref name="org.jboss.ejb3.interceptor.EJB3InterceptorsFactory"/>
- </bind>
- <annotation expr="!class((a)org.jboss.ejb3.annotation.JndiBindingPolicy)">
- @org.jboss.ejb3.annotation.JndiBindingPolicy (policy=org.jboss.ejb3.jndipolicy.impl.PackagingBasedJndiBindingPolicy.class)
- </annotation>
- </domain>
-
- <domain name="JACC Service Bean">
- <bind pointcut="execution(public * *->*(..))">
- <interceptor-ref name="org.jboss.ejb3.asynchronous.AsynchronousInterceptor"/>
- <interceptor-ref name="org.jboss.ejb3.ENCPropagationInterceptor"/>
- </bind>
- <bind pointcut="!execution(* *->create()) AND !execution(* *->start()) AND !execution(*->new(..))">
- <interceptor-ref name="org.jboss.ejb3.security.AuthenticationInterceptorFactory"/>
- </bind>
- <bind pointcut="execution(public * @org.jboss.ejb3.annotation.SecurityDomain->*(..))">
- <interceptor-ref name="Basic Authorization"/>
- </bind>
- <bind pointcut="execution(public * *->*(..))">
- <interceptor-ref name="org.jboss.ejb3.security.RunAsSecurityInterceptorFactory"/>
- </bind>
- <bind pointcut="execution(public * *->*(..))">
- <interceptor-ref name="org.jboss.aspects.tx.TxPropagationInterceptor"/>
- <interceptor-ref name="org.jboss.ejb3.tx.TxInterceptorFactory"/>
- <interceptor-ref name="org.jboss.ejb3.AllowedOperationsInterceptor"/>
- <interceptor-ref name="org.jboss.ejb3.entity.TransactionScopedEntityManagerInterceptor"/>
- </bind>
- <bind pointcut="execution(public * *->*(..)) AND !execution(* *->create()) AND !execution(* *->start())">
- <interceptor-ref name="org.jboss.ejb3.interceptor.EJB3InterceptorsFactory"/>
- </bind>
- <annotation expr="!class((a)org.jboss.ejb3.annotation.JndiBindingPolicy)">
- @org.jboss.ejb3.annotation.JndiBindingPolicy (policy=org.jboss.ejb3.jndipolicy.impl.PackagingBasedJndiBindingPolicy.class)
- </annotation>
- </domain>
-
-</aop>
\ No newline at end of file
Deleted: branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/hsqldb-ds.xml
===================================================================
--- branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/hsqldb-ds.xml 2012-05-21 14:44:58 UTC (rev 14716)
+++ branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/hsqldb-ds.xml 2012-05-21 18:28:37 UTC (rev 14717)
@@ -1,108 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!-- The Hypersonic embedded database JCA connection factory config -->
-
-<!-- $Id: hsqldb-ds.xml 6916 2007-12-05 17:53:00Z pmuir $ -->
-
-<datasources>
- <local-tx-datasource>
-
- <!-- The jndi name of the DataSource, it is prefixed with java:/ -->
- <!-- Datasources are not available outside the virtual machine -->
- <jndi-name>DefaultDS</jndi-name>
-
- <!-- For server mode db, allowing other processes to use hsqldb over tcp.
- This requires the org.jboss.jdbc.HypersonicDatabase mbean.
- <connection-url>jdbc:hsqldb:hsql://${jboss.bind.address}:1701</connection-url>
- -->
- <!-- For totally in-memory db, not saved when jboss stops.
- The org.jboss.jdbc.HypersonicDatabase mbean is required for proper db shutdown
- <connection-url>jdbc:hsqldb:.</connection-url>
- -->
- <!-- For in-process persistent db, saved when jboss stops.
- The org.jboss.jdbc.HypersonicDatabase mbean is required for proper db shutdown
- -->
- <connection-url>jdbc:hsqldb:${jboss.server.data.dir}${/}hypersonic${/}localDB</connection-url>
-
- <!-- The driver class -->
- <driver-class>org.hsqldb.jdbcDriver</driver-class>
-
- <!-- The login and password -->
- <user-name>sa</user-name>
- <password></password>
-
- <!--example of how to specify class that determines if exception means connection should be destroyed-->
- <!--exception-sorter-class-name>org.jboss.resource.adapter.jdbc.vendor.DummyExceptionSorter</exception-sorter-class-name-->
-
- <!-- this will be run before a managed connection is removed from the pool for use by a client-->
- <!--<check-valid-connection-sql>select * from something</check-valid-connection-sql> -->
-
- <!-- The minimum connections in a pool/sub-pool. Pools are lazily constructed on first use -->
- <min-pool-size>0</min-pool-size>
-
- <!-- The maximum connections in a pool/sub-pool -->
- <max-pool-size>20</max-pool-size>
-
- <!-- The time before an unused connection is destroyed -->
- <!-- NOTE: This is the check period. It will be destroyed somewhere between 1x and 2x this timeout after last use -->
- <!-- TEMPORARY FIX! - Disable idle connection removal, HSQLDB has a problem with not reaping threads on closed connections -->
- <idle-timeout-minutes>0</idle-timeout-minutes>
-
- <!-- sql to call when connection is created
- <new-connection-sql>some arbitrary sql</new-connection-sql>
- -->
-
- <!-- sql to call on an existing pooled connection when it is obtained from pool
- <check-valid-connection-sql>some arbitrary sql</check-valid-connection-sql>
- -->
-
- <!-- example of how to specify a class that determines a connection is valid before it is handed out from the pool
- <valid-connection-checker-class-name>org.jboss.resource.adapter.jdbc.vendor.DummyValidConnectionChecker</valid-connection-checker-class-name>
- -->
-
- <!-- Whether to check all statements are closed when the connection is returned to the pool,
- this is a debugging feature that should be turned off in production -->
- <track-statements/>
-
- <!-- Use the getConnection(user, pw) for logins
- <application-managed-security/>
- -->
-
- <!-- Use the security domain defined in conf/login-config.xml -->
- <security-domain>HsqlDbRealm</security-domain>
-
- <!-- Use the security domain defined in conf/login-config.xml or the
- getConnection(user, pw) for logins. The security domain takes precedence.
- <security-domain-and-application>HsqlDbRealm</security-domain-and-application>
- -->
-
- <!-- HSQL DB benefits from prepared statement caching -->
- <prepared-statement-cache-size>32</prepared-statement-cache-size>
-
- <!-- When using in-process (standalone) mode -->
- <depends>jboss:service=Hypersonic,database=localDB</depends>
- <!-- Uncomment when using hsqldb in server mode
- <depends>jboss:service=Hypersonic</depends>
- -->
- </local-tx-datasource>
-
- <!-- Uncomment if you want hsqldb accessed over tcp (server mode)
- <mbean code="org.jboss.jdbc.HypersonicDatabase"
- name="jboss:service=Hypersonic">
- <attribute name="Port">1701</attribute>
- <attribute name="BindAddress">${jboss.bind.address}</attribute>
- <attribute name="Silent">true</attribute>
- <attribute name="Database">default</attribute>
- <attribute name="Trace">false</attribute>
- <attribute name="No_system_exit">true</attribute>
- </mbean>
- -->
-
- <!-- For hsqldb accessed from jboss only, in-process (standalone) mode -->
- <mbean code="org.jboss.jdbc.HypersonicDatabase"
- name="jboss:service=Hypersonic,database=localDB">
- <attribute name="Database">localDB</attribute>
- <attribute name="InProcessMode">true</attribute>
- </mbean>
-
-</datasources>
Deleted: branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/jboss-local-jdbc.rar
===================================================================
(Binary files differ)
Deleted: branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/jboss-xa-jdbc.rar
===================================================================
(Binary files differ)
Deleted: branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/jms-ra.rar
===================================================================
(Binary files differ)
Deleted: branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/messaging/connection-factories-service.xml
===================================================================
--- branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/messaging/connection-factories-service.xml 2012-05-21 14:44:58 UTC (rev 14716)
+++ branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/messaging/connection-factories-service.xml 2012-05-21 18:28:37 UTC (rev 14717)
@@ -1,149 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
- Messaging Connection Factories deployment descriptor.
-
- $Id: connection-factories-service.xml 6916 2007-12-05 17:53:00Z pmuir $
- -->
-
-<server>
-
- <!-- The default connection factory does not support automatic failover or load balancing-
- this is so we can maintain compatiblity with applications written for JBoss MQ which use this
- connection factory.
- -->
- <mbean code="org.jboss.jms.server.connectionfactory.ConnectionFactory"
- name="jboss.messaging.connectionfactory:service=ConnectionFactory"
- xmbean-dd="xmdesc/ConnectionFactory-xmbean.xml">
- <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
- <depends optional-attribute-name="Connector">jboss.messaging:service=Connector,transport=bisocket</depends>
- <depends>jboss.messaging:service=PostOffice</depends>
-
- <attribute name="JNDIBindings">
- <bindings>
- <binding>/ConnectionFactory</binding>
- <binding>/XAConnectionFactory</binding>
- <binding>java:/ConnectionFactory</binding>
- <binding>java:/XAConnectionFactory</binding>
- </bindings>
- </attribute>
- </mbean>
-
- <!-- A clustered connection factory that supports automatic failover and load balancing of created
- connections.
- This factory is not suitable to be used by MDBs.
- -->
- <mbean code="org.jboss.jms.server.connectionfactory.ConnectionFactory"
- name="jboss.messaging.connectionfactory:service=ClusteredConnectionFactory"
- xmbean-dd="xmdesc/ConnectionFactory-xmbean.xml">
- <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
- <depends optional-attribute-name="Connector">jboss.messaging:service=Connector,transport=bisocket</depends>
- <depends>jboss.messaging:service=PostOffice</depends>
-
- <attribute name="JNDIBindings">
- <bindings>
- <binding>/ClusteredConnectionFactory</binding>
- <binding>/ClusteredXAConnectionFactory</binding>
- <binding>java:/ClusteredConnectionFactory</binding>
- <binding>java:/ClusteredXAConnectionFactory</binding>
- </bindings>
- </attribute>
-
- <attribute name="SupportsFailover">true</attribute>
- <attribute name="SupportsLoadBalancing">true</attribute>
- </mbean>
-
- <!-- A connection factory with no JNDI bindings that is used in clustering to create the connections that
- pull messages from one node to another
- -->
- <mbean code="org.jboss.jms.server.connectionfactory.ConnectionFactory"
- name="jboss.messaging.connectionfactory:service=ClusterPullConnectionFactory"
- xmbean-dd="xmdesc/ConnectionFactory-xmbean.xml">
- <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
- <depends optional-attribute-name="Connector">jboss.messaging:service=Connector,transport=bisocket</depends>
- <depends>jboss.messaging:service=PostOffice</depends>
- <attribute name="SupportsFailover">false</attribute>
- <attribute name="SupportsLoadBalancing">false</attribute>
- </mbean>
-
- <!-- An example connection factory with all attributes shown
-
- <mbean code="org.jboss.jms.server.connectionfactory.ConnectionFactory"
- name="jboss.messaging.connectionfactory:service=MyExampleConnectionFactory"
- xmbean-dd="xmdesc/ConnectionFactory-xmbean.xml">
-
- <constructor>
-
- <!- - You can specify the default Client ID to use for connections created using this factory - ->
-
- <arg type="java.lang.String" value="MyClientID"/>
-
- </constructor>
-
- <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
-
- <!- - The transport to use - can be bisocket, sslbisocket or http - ->
-
- <depends optional-attribute-name="Connector">jboss.messaging:service=Connector,transport=http</depends>
-
- <depends>jboss.messaging:service=PostOffice</depends>
-
- <!- - PrefetchSize determines the approximate maximum number of messages the client consumer will buffer locally - ->
-
- <attribute name="PrefetchSize">150</attribute>
-
- <!- - Paging params to be used for temporary queues - ->
-
- <attribute name="DefaultTempQueueFullSize">200000</attribute>
-
- <attribute name="DefaultTempQueuePageSizeSize">2000</attribute>
-
- <attribute name="DefaultTempQueueDownCacheSize">2000</attribute>
-
- <!- - The batch size to use when using the DUPS_OK_ACKNOWLEDGE acknowledgement mode - ->
-
- <attribute name="DupsOKBatchSize">5000</attribute>
-
- <!- - Does this connection factory support automatic failover? - ->
-
- <attribute name="SupportsFailover">false</attribute>
-
- <!- - Does this connection factory support automatic client side load balancing? - ->
-
- <attribute name="SupportsLoadBalancing">false</attribute>
-
- <!- - The class name of the factory used to create the load balancing policy to use on the client side - ->
-
- <attribute name="LoadBalancingFactory">org.jboss.jms.client.plugin.RoundRobinLoadBalancingFactory</attribute>
-
- <!- - Whether we should be strict TCK compliant, i.e. how we deal with foreign messages, defaults to false- ->
-
- <attribute name="StrictTck">false</attribute>
-
- <!- - Disable JBoss Remoting Connector sanity checks - There is rarely a good reason to set this to true - ->
-
- <attribute name="DisableRemotingChecks">false</attribute>
-
- <!- - The connection factory will be bound in the following places in JNDI - ->
-
- <attribute name="JNDIBindings">
-
- <bindings>
-
- <binding>/acme/MyExampleConnectionFactory</binding>
-
- <binding>/acme/MyExampleConnectionFactoryDupe</binding>
-
- <binding>java:/xyz/CF1</binding>
-
- <binding>java:/connectionfactories/acme/connection_factory</binding>
-
- </bindings>
-
- </attribute>
-
- </mbean>
-
- -->
-
-</server>
\ No newline at end of file
Deleted: branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/messaging/destinations-service.xml
===================================================================
--- branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/messaging/destinations-service.xml 2012-05-21 14:44:58 UTC (rev 14716)
+++ branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/messaging/destinations-service.xml 2012-05-21 18:28:37 UTC (rev 14717)
@@ -1,36 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
- Messaging Destinations deployment descriptor.
-
- $Id: destinations-service.xml 6916 2007-12-05 17:53:00Z pmuir $
- -->
-
-<server>
-
- <!--
- The Default Dead Letter Queue. This destination is a dependency of an EJB MDB container.
- -->
-
- <mbean code="org.jboss.jms.server.destination.QueueService"
- name="jboss.messaging.destination:service=Queue,name=DLQ"
- xmbean-dd="xmdesc/Queue-xmbean.xml">
- <annotation>@org.jboss.system.deployers.managed.ManagementObjectClass(code=org.jboss.jms.server.destination.QueueServiceMO)</annotation>
- <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
- <depends>jboss.messaging:service=PostOffice</depends>
- </mbean>
-
- <!--
- The Default Expiry Queue.
- -->
-
- <mbean code="org.jboss.jms.server.destination.QueueService"
- name="jboss.messaging.destination:service=Queue,name=ExpiryQueue"
- xmbean-dd="xmdesc/Queue-xmbean.xml">
- <annotation>@org.jboss.system.deployers.managed.ManagementObjectClass(code=org.jboss.jms.server.destination.QueueServiceMO)</annotation>
- <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
- <depends>jboss.messaging:service=PostOffice</depends>
- </mbean>
-
-
-</server>
\ No newline at end of file
Deleted: branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/messaging/hsqldb-persistence-service.xml
===================================================================
--- branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/messaging/hsqldb-persistence-service.xml 2012-05-21 14:44:58 UTC (rev 14716)
+++ branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/messaging/hsqldb-persistence-service.xml 2012-05-21 18:28:37 UTC (rev 14717)
@@ -1,104 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
- Hypersonic persistence deployment descriptor.
-
- DO NOT USE HYPERSONIC IN PRODUCTION or in a clustered environment- Hypersonic does not have transaction isolation
-
- $Id: hsqldb-persistence-service.xml 6916 2007-12-05 17:53:00Z pmuir $
- -->
-
-<server>
-
- <!-- Persistence Manager MBean configuration
- ======================================= -->
-
- <mbean code="org.jboss.messaging.core.jmx.JDBCPersistenceManagerService"
- name="jboss.messaging:service=PersistenceManager"
- xmbean-dd="xmdesc/JDBCPersistenceManager-xmbean.xml">
-
- <depends>jboss.jca:service=DataSourceBinding,name=DefaultDS</depends>
-
- <depends optional-attribute-name="TransactionManager">jboss:service=TransactionManager</depends>
-
- <!-- The datasource to use for the persistence manager -->
-
- <attribute name="DataSource">java:/DefaultDS</attribute>
-
- <!-- If true will attempt to create tables and indexes on every start-up -->
-
- <attribute name="CreateTablesOnStartup">true</attribute>
-
- <!-- If true then will use JDBC batch updates -->
-
- <attribute name="UsingBatchUpdates">false</attribute>
-
- <!-- The maximum number of parameters to include in a prepared statement -->
-
- <attribute name="MaxParams">500</attribute>
- </mbean>
-
- <!-- Messaging Post Office MBean configuration
- ========================================= -->
-
- <mbean code="org.jboss.messaging.core.jmx.MessagingPostOfficeService"
- name="jboss.messaging:service=PostOffice"
- xmbean-dd="xmdesc/MessagingPostOffice-xmbean.xml">
-
- <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
-
- <depends>jboss.jca:service=DataSourceBinding,name=DefaultDS</depends>
-
- <depends optional-attribute-name="TransactionManager">jboss:service=TransactionManager</depends>
-
- <!-- The name of the post office -->
-
- <attribute name="PostOfficeName">JMS post office</attribute>
-
- <!-- The datasource used by the post office to access it's binding information -->
-
- <attribute name="DataSource">java:/DefaultDS</attribute>
-
- <!-- If true will attempt to create tables and indexes on every start-up -->
-
- <attribute name="CreateTablesOnStartup">true</attribute>
-
- <!-- This post office is NON CLUSTERED - do not use clustering with Hypersonic!! -->
-
- <attribute name="Clustered">false</attribute>
- </mbean>
-
- <!-- Messaging JMS User Manager MBean config
- ======================================= -->
-
- <mbean code="org.jboss.jms.server.plugin.JDBCJMSUserManagerService"
- name="jboss.messaging:service=JMSUserManager"
- xmbean-dd="xmdesc/JMSUserManager-xmbean.xml">
-
- <depends>jboss.jca:service=DataSourceBinding,name=DefaultDS</depends>
-
- <depends optional-attribute-name="TransactionManager">jboss:service=TransactionManager</depends>
-
- <attribute name="DataSource">java:/DefaultDS</attribute>
-
- <attribute name="CreateTablesOnStartup">true</attribute>
-
- <attribute name="SqlProperties"><![CDATA[
-POPULATE.TABLES.1 = INSERT INTO JBM_USER (USER_ID, PASSWD) VALUES ('guest', 'guest')
-POPULATE.TABLES.2 = INSERT INTO JBM_USER (USER_ID, PASSWD) VALUES ('j2ee', 'j2ee')
-POPULATE.TABLES.3 = INSERT INTO JBM_USER (USER_ID, PASSWD, CLIENTID) VALUES ('john', 'needle', 'DurableSubscriberExample')
-POPULATE.TABLES.4 = INSERT INTO JBM_USER (USER_ID, PASSWD) VALUES ('nobody', 'nobody')
-POPULATE.TABLES.5 = INSERT INTO JBM_USER (USER_ID, PASSWD) VALUES ('dynsub', 'dynsub')
-POPULATE.TABLES.6 = INSERT INTO JBM_ROLE (ROLE_ID, USER_ID) VALUES ('guest','guest')
-POPULATE.TABLES.7 = INSERT INTO JBM_ROLE (ROLE_ID, USER_ID) VALUES ('j2ee','guest')
-POPULATE.TABLES.8 = INSERT INTO JBM_ROLE (ROLE_ID, USER_ID) VALUES ('john','guest')
-POPULATE.TABLES.9 = INSERT INTO JBM_ROLE (ROLE_ID, USER_ID) VALUES ('subscriber','john')
-POPULATE.TABLES.10 = INSERT INTO JBM_ROLE (ROLE_ID, USER_ID) VALUES ('publisher','john')
-POPULATE.TABLES.11 = INSERT INTO JBM_ROLE (ROLE_ID, USER_ID) VALUES ('publisher','dynsub')
-POPULATE.TABLES.12 = INSERT INTO JBM_ROLE (ROLE_ID, USER_ID) VALUES ('durpublisher','john')
-POPULATE.TABLES.13 = INSERT INTO JBM_ROLE (ROLE_ID, USER_ID) VALUES ('durpublisher','dynsub')
-POPULATE.TABLES.14 = INSERT INTO JBM_ROLE (ROLE_ID, USER_ID) VALUES ('noacc','nobody')
- ]]></attribute>
- </mbean>
-
-</server>
\ No newline at end of file
Deleted: branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/messaging/jms-ds.xml
===================================================================
--- branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/messaging/jms-ds.xml 2012-05-21 14:44:58 UTC (rev 14716)
+++ branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/messaging/jms-ds.xml 2012-05-21 18:28:37 UTC (rev 14717)
@@ -1,36 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<connection-factories>
-
- <!-- ==================================================================== -->
- <!-- JMS Stuff -->
- <!-- ==================================================================== -->
-
- <!--
- The JMS provider loader. Currently pointing to a non-clustered ConnectionFactory. Need to
- be replaced with a clustered non-load-balanced ConnectionFactory when it becomes available.
- See http://jira.jboss.org/jira/browse/JBMESSAGING-843.
- -->
- <mbean code="org.jboss.jms.jndi.JMSProviderLoader"
- name="jboss.messaging:service=JMSProviderLoader,name=JMSProvider">
- <attribute name="ProviderName">DefaultJMSProvider</attribute>
- <attribute name="ProviderAdapterClass">org.jboss.jms.jndi.JNDIProviderAdapter</attribute>
- <attribute name="FactoryRef">java:/XAConnectionFactory</attribute>
- <attribute name="QueueFactoryRef">java:/XAConnectionFactory</attribute>
- <attribute name="TopicFactoryRef">java:/XAConnectionFactory</attribute>
- </mbean>
-
- <!-- JMS XA Resource adapter, use this to get transacted JMS in beans -->
- <tx-connection-factory>
- <jndi-name>JmsXA</jndi-name>
- <xa-transaction/>
- <rar-name>jms-ra.rar</rar-name>
- <connection-definition>org.jboss.resource.adapter.jms.JmsConnectionFactory</connection-definition>
- <config-property name="SessionDefaultType" type="java.lang.String">javax.jms.Topic</config-property>
- <config-property name="JmsProviderAdapterJNDI" type="java.lang.String">java:/DefaultJMSProvider</config-property>
- <max-pool-size>20</max-pool-size>
- <security-domain-and-application>JmsXARealm</security-domain-and-application>
- <depends>jboss.messaging:service=ServerPeer</depends>
- </tx-connection-factory>
-
-</connection-factories>
Deleted: branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/messaging/legacy-service.xml
===================================================================
--- branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/messaging/legacy-service.xml 2012-05-21 14:44:58 UTC (rev 14716)
+++ branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/messaging/legacy-service.xml 2012-05-21 18:28:37 UTC (rev 14717)
@@ -1,16 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
- Messaging Destinations deployment descriptor.
-
- $Id: legacy-service.xml 6916 2007-12-05 17:53:00Z pmuir $
--->
-
-<server>
- <mbean code="org.jboss.mq.server.jmx.DummyDestMgr"
- name="jboss.mq:service=DestinationManager">
- <depends>jboss.messaging:service=ServerPeer</depends>
- </mbean>
- <mbean code="org.jboss.mq.server.jmx.DummySecurityMgr"
- name="jboss.mq:service=SecurityManager" />
-
-</server>
Deleted: branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/messaging/messaging-service.xml
===================================================================
--- branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/messaging/messaging-service.xml 2012-05-21 14:44:58 UTC (rev 14716)
+++ branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/messaging/messaging-service.xml 2012-05-21 18:28:37 UTC (rev 14717)
@@ -1,114 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
- The JBoss Messaging service deployment descriptor.
-
- $Id: messaging-service.xml 7115 2008-01-10 23:23:32Z pmuir $
- -->
-
-<server>
-
- <!-- ServerPeer MBean configuration
- ============================== -->
-
- <mbean code="org.jboss.jms.server.ServerPeer"
- name="jboss.messaging:service=ServerPeer"
- xmbean-dd="xmdesc/ServerPeer-xmbean.xml">
-
- <!-- The unique id of the server peer - in a cluster each node MUST have a unique value - must be an integer -->
-
- <attribute name="ServerPeerID">0</attribute>
-
- <!-- The default JNDI context to use for queues when they are deployed without specifying one -->
-
- <attribute name="DefaultQueueJNDIContext">/queue</attribute>
-
- <!-- The default JNDI context to use for topics when they are deployed without specifying one -->
-
- <attribute name="DefaultTopicJNDIContext">/topic</attribute>
-
- <attribute name="PostOffice">jboss.messaging:service=PostOffice</attribute>
-
- <!-- The JAAS security domain to use for JBoss Messaging -->
-
- <attribute name="SecurityDomain">java:/jaas/messaging</attribute>
-
- <!-- The default security configuration to apply to destinations - this can be overridden on a per destination basis -->
-
- <attribute name="DefaultSecurityConfig">
- <security>
- <role name="Administrator" read="true" write="true" create="true"/>
- <role name="Manager" read="true" write="true" create="true"/>
- <role name="guest" read="true" write="true" create="true"/>
- </security>
- </attribute>
-
- <!-- The default Dead Letter Queue (DLQ) to use for destinations.
- This can be overridden on a per destinatin basis -->
-
- <attribute name="DefaultDLQ">jboss.messaging.destination:service=Queue,name=DLQ</attribute>
-
- <!-- The default maximum number of times to attempt delivery of a message before sending to the DLQ (if configured).
- This can be overridden on a per destinatin basis -->
-
- <attribute name="DefaultMaxDeliveryAttempts">10</attribute>
-
- <!-- The default Expiry Queue to use for destinations. This can be overridden on a per destinatin basis -->
-
- <attribute name="DefaultExpiryQueue">jboss.messaging.destination:service=Queue,name=ExpiryQueue</attribute>
-
- <!-- The default redelivery delay to impose. This can be overridden on a per destination basis -->
-
- <attribute name="DefaultRedeliveryDelay">0</attribute>
-
- <!-- The periodicity of the message counter manager enquiring on queues for statistics -->
-
- <attribute name="MessageCounterSamplePeriod">5000</attribute>
-
- <!-- The maximum amount of time for a client to wait for failover to start on the server side after
- it has detected failure -->
-
- <attribute name="FailoverStartTimeout">60000</attribute>
-
- <!-- The maximum amount of time for a client to wait for failover to complete on the server side after
- it has detected failure -->
-
- <attribute name="FailoverCompleteTimeout">300000</attribute>
-
- <attribute name="StrictTck">false</attribute>
-
- <!-- The maximum number of days results to maintain in the message counter history -->
-
- <attribute name="DefaultMessageCounterHistoryDayLimit">-1</attribute>
-
- <!-- The name of the connection factory to use for creating connections between nodes to pull messages -->
-
- <attribute name="ClusterPullConnectionFactoryName">jboss.messaging.connectionfactory:service=ClusterPullConnectionFactory</attribute>
-
- <!-- Use XA when pulling persistent messages from a remote node to this one. -->
-
- <!-- <attribute name="UseXAForMessagePull">false</attribute>-->
-
- <!-- When redistributing messages in the cluster. Do we need to preserve the order of messages received
- by a particular consumer from a particular producer? -->
-
- <attribute name="DefaultPreserveOrdering">false</attribute>
-
- <!-- Max. time to hold previously delivered messages back waiting for clients to reconnect after failover -->
-
- <attribute name="RecoverDeliveriesTimeout">300000</attribute>
-
- <!-- The password used by the message sucker connections to create connections.
- THIS SHOULD ALWAYS BE CHANGED AT INSTALL TIME TO SECURE SYSTEM
- <attribute name="SuckerPassword"></attribute>
- -->
-
- <depends optional-attribute-name="PersistenceManager">jboss.messaging:service=PersistenceManager</depends>
-
- <depends optional-attribute-name="JMSUserManager">jboss.messaging:service=JMSUserManager</depends>
-
- <depends>jboss.messaging:service=Connector,transport=bisocket</depends>
-
- </mbean>
-
-</server>
Deleted: branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/messaging/remoting-service.xml
===================================================================
--- branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/messaging/remoting-service.xml 2012-05-21 14:44:58 UTC (rev 14716)
+++ branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/messaging/remoting-service.xml 2012-05-21 18:28:37 UTC (rev 14717)
@@ -1,62 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
- Standard bisocket-based Remoting service deployment descriptor.
-
- $Id: remoting-service.xml 8448 2008-07-13 12:40:54Z pete.muir(a)jboss.org $
- -->
-
-<server>
-
- <!-- Standard bisocket connector - the bisocket transport only opens connection from client->server
- so can be used with firewalls where only outgoing connections are allowed.
- For examples of HTTP and SSL transports see docs/examples -->
- <mbean code="org.jboss.remoting.transport.Connector"
- name="jboss.messaging:service=Connector,transport=bisocket"
- display-name="Bisocket Transport Connector">
- <attribute name="Configuration">
- <config>
- <invoker transport="bisocket">
-
- <!-- There should be no reason to change these parameters - warning!
- Changing them may stop JBoss Messaging working correctly -->
- <attribute name="marshaller" isParam="true">org.jboss.jms.wireformat.JMSWireFormat</attribute>
- <attribute name="unmarshaller" isParam="true">org.jboss.jms.wireformat.JMSWireFormat</attribute>
- <attribute name="dataType" isParam="true">jms</attribute>
- <attribute name="socket.check_connection" isParam="true">false</attribute>
- <attribute name="timeout" isParam="true">0</attribute>
- <attribute name="serverBindAddress">${jboss.bind.address}</attribute>
- <attribute name="serverBindPort">4458</attribute>
- <attribute name="clientSocketClass" isParam="true">org.jboss.jms.client.remoting.ClientSocketWrapper</attribute>
- <attribute name="serverSocketClass">org.jboss.jms.server.remoting.ServerSocketWrapper</attribute>
- <attribute name="numberOfCallRetries" isParam="true">1</attribute>
- <attribute name="pingFrequency" isParam="true">214748364</attribute>
- <attribute name="pingWindowFactor" isParam="true">10</attribute>
- <attribute name="onewayThreadPool">org.jboss.jms.server.remoting.DirectThreadPool</attribute>
- <!-- End immutable parameters -->
-
- <!-- Periodicity of client pings. Server window by default is twice this figure -->
- <attribute name="clientLeasePeriod" isParam="true">10000</attribute>
-
- <!-- Number of seconds to wait for a connection in the client pool to become free -->
- <attribute name="numberOfRetries" isParam="true">10</attribute>
-
- <!-- Max Number of connections in client pool. This should be significantly higher than
- the max number of sessions/consumers you expect -->
- <attribute name="clientMaxPoolSize" isParam="true">200</attribute>
-
- <!-- Use these parameters to specify values for binding and connecting control connections to
- work with your firewall/NAT configuration
- <attribute name="secondaryBindPort">xyz</attribute>
- <attribute name="secondaryConnectPort">abc</attribute>
- -->
-
- </invoker>
- <handlers>
- <handler subsystem="JMS">org.jboss.jms.server.remoting.JMSServerInvocationHandler</handler>
- </handlers>
- </config>
- </attribute>
- </mbean>
-
-</server>
Deleted: branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/remoting-service.xml
===================================================================
--- branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/remoting-service.xml 2012-05-21 14:44:58 UTC (rev 14716)
+++ branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deploy/remoting-service.xml 2012-05-21 18:28:37 UTC (rev 14717)
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
- Connector for both EJB3 and JNDI
--->
-<server>
- <mbean code="org.jboss.remoting.transport.Connector"
- name="jboss.remoting:type=Connector,name=DefaultEjb3Connector,handler=ejb3">
- <attribute name="InvokerLocator">socket://${jboss.bind.address}:3883</attribute>
- <attribute name="Configuration">
- <handlers>
- <handler subsystem="AOP">org.jboss.aspects.remoting.AOPRemotingInvocationHandler</handler>
- </handlers>
- </attribute>
- </mbean>
-</server>
Deleted: branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deployers/aspect-deployer-beans.xml
===================================================================
--- branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deployers/aspect-deployer-beans.xml 2012-05-21 14:44:58 UTC (rev 14716)
+++ branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deployers/aspect-deployer-beans.xml 2012-05-21 18:28:37 UTC (rev 14717)
@@ -1,50 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
- Aspect Deployer
--->
-<deployment xmlns="urn:jboss:bean-deployer:2.0">
- <bean name="AOPJBossIntegration" class="org.jboss.aop.asintegration.embedded.JBossEmbeddedUCLIntegration"/>
- <!--
- Valid values for the AspectManager bean for use with enableTransformer=true are:
- * org.jboss.aop.deployers.AspectManagerJDK5 - works with the -javaagent:pluggable-instrumentor.jar switch
- * org.jboss.aop.deployers.AspectManagerJRockit - works with JRockit and the -Xmanagement:class=org.jboss.aop.hook.JRockitPluggableClassPreProcessor switch
- -->
- <bean name="AspectManager" class="org.jboss.aop.deployers.AspectManagerJDK5">
- <constructor>
- <parameter><![CDATA[
- <aop>
- </aop>]]>
- </parameter>
- </constructor>
- <property name="jbossIntegration"><inject bean="AOPJBossIntegration"/></property>
- <property name="enableLoadtimeWeaving">false</property>
- <!-- only relevant when EnableLoadtimeWeaving is true.
- When transformer is on, every loaded class gets
- transformed. If AOP can't find the class, then it
- throws an exception. Sometimes, classes may not have
- all the classes they reference. So, the Suppressing
- is needed. (i.e. Jboss cache in the default configuration -->
- <property name="suppressTransformationErrors">true</property>
- <property name="prune">true</property>
- <property name="include">org.jboss.test., org.jboss.injbossaop.</property>
- <property name="exclude">org.jboss.</property>
- <!-- This avoids instrumentation of hibernate cglib enhanced proxies
- <property name="ignore">*$$EnhancerByCGLIB$$*</property> -->
- <property name="optimized">true</property>
- <property name="verbose">false</property>
- <!--
- Available choices for this attribute are:
- org.jboss.aop.instrument.ClassicInstrumentor (default)
- org.jboss.aop.instrument.GeneratedAdvisorInstrumentor
- <property name="instrumentor">org.jboss.aop.instrument.ClassicInstrumentor</property>
- -->
- </bean>
-
- <!-- Aspect Deployment -->
- <bean name="AspectDeployer" class="org.jboss.aop.deployers.AspectDeployer">
- <property name="type">aop</property>
- <property name="aspectManager"><inject bean="AspectManager" property="aspectManager"/></property>
- </bean>
-
-</deployment>
Deleted: branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deployers/ejb-deployer-beans.xml
===================================================================
--- branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deployers/ejb-deployer-beans.xml 2012-05-21 14:44:58 UTC (rev 14716)
+++ branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deployers/ejb-deployer-beans.xml 2012-05-21 18:28:37 UTC (rev 14717)
@@ -1,54 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
- EJB 2.x Deployer
--->
-<deployment xmlns="urn:jboss:bean-deployer:2.0">
-
- <!-- ejb-jar.xml parsing deployer -->
- <bean name="Ejb2ParsingDeployer" class="org.jboss.deployment.EjbParsingDeployer">
- <property name="type">ejb2x</property>
- <property name="useSchemaValidation">false</property>
- <property name="relativeOrder">3000</property>
- </bean>
- <bean name="JBossEjb2ParsingDeployer" class="org.jboss.deployment.JBossEjbParsingDeployer">
- <property name="type">ejb2x</property>
- <property name="relativeOrder">3001</property>
- <property name="useSchemaValidation">false</property>
- <property name="ignoreMissingStandardJBossXml">true</property>
- </bean>
-
- <bean name="EJB2xDeployer" class="org.jboss.ejb.deployers.EjbDeployer">
- <!-- The EJBDeployer needs the JTA transaction manager service -->
- <property name="transactionManagerServiceName">jboss:service=TransactionManager</property>
- <!-- The dynamic class loading simple web server -->
- <property name="webServiceName">jboss:service=WebService</property>
- <!-- The CachedConnectionManager service used by the CachedConnectionInterceptor -->
- <property name="cachedConnectionManagerName">jboss.jca:service=CachedConnectionManager</property>
- <!-- The ejb timer service -->
- <property name="timerServiceName">jboss.ejb:service=EJBTimerService</property>
- <!-- A flag indicating if the ejb components should have in VM call
- optimization disabled.
- -->
- <property name="callByValue">false</property>
-
- <!-- Specify an unauthenticated identity -->
- <property name="unauthenticatedIdentity">anonymous</property>
-
- <!-- Specify a SecurityManagement Wrapper -->
- <property name="securityManagement">
- <inject bean="JNDIBasedSecurityManagement"/>
- </property>
- <!-- Specify a SecurityContext FQN class name -->
- <property name="securityContextClassName">org.jboss.security.plugins.JBossSecurityContext</property>
-
- <!-- Specify a SecurityDomain as fallback -->
- <property name="defaultSecurityDomain">jboss-ejb-policy</property>
-
- <depends>SecurityDeployer</depends>
- </bean>
-
- <bean name="MergedJBossMetaDataDeployer" class="org.jboss.ejb.deployers.MergedJBossMetaDataDeployer">
- </bean>
- <bean name="StandardJBossMetaDataDeployer" class="org.jboss.ejb.deployers.StandardJBossMetaDataDeployer">
- </bean>
-</deployment>
Deleted: branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deployers/ejb3-deployers-beans.xml
===================================================================
--- branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deployers/ejb3-deployers-beans.xml 2012-05-21 14:44:58 UTC (rev 14716)
+++ branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deployers/ejb3-deployers-beans.xml 2012-05-21 18:28:37 UTC (rev 14717)
@@ -1,259 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
- JCA Deployers
--->
-<deployment xmlns="urn:jboss:bean-deployer:2.0">
-
- <!-- TODO this should be removed later on when ENC gets changed -->
- <bean name="java:comp/Initializer" class="org.jboss.ejb3.embedded.JavaCompInitializer"/>
- <bean name="DefaultPersistenceProperties" class="org.jboss.ejb3.DefaultPersistenceProperties"/>
-
- <bean name="Ejb3Deployer" class="org.jboss.ejb3.deployers.Ejb3Deployer">
- <property name="type">ejb3x</property>
- <property name="kernel"><inject bean="jboss.kernel:service=Kernel"/></property>
- <property name="mbeanServer"><inject bean="JMXKernel" property="mbeanServer"/></property>
- <property name="defaultPersistenceProperties"><inject bean="DefaultPersistenceProperties" property="properties"/></property>
- <property name="cacheFactoryRegistry"><inject bean="EJB3CacheFactoryRegistry" /></property>
- <property name="poolFactoryRegistry"><inject bean="EJB3PoolFactoryRegistry" /></property>
- <property name="remoteProxyFactoryRegistry"><inject bean="EJB3RemoteProxyFactoryRegistry" /></property>
- <property name="persistenceManagerFactoryRegistry"><inject bean="EJB3PersistenceManagerFactoryRegistry" /></property>
-
- <!--
-
- Configure the deployer to optionally require a deployment
- descriptor for deployable units. By turning this switch to "true",
- "META-INF/jboss.xml" or the EJB3 Deployment Descriptor "META-INF/ejb-jar.xml"
- will be required for deployment, enabling a performance increace in deployment by
- not scanning for annotations in non-deployable EJB3 JARs.
-
- Default for this value is "false".
-
- -->
- <property name="deploymentDescriptorRequired">false</property>
-
- <property name="ignoredJarsSet">
- <set elementClass="java.lang.String">
- <value>snmp-adaptor.jar</value>
- <value>otherimages.jar</value>
- <value>applet.jar</value>
- <value>jcommon.jar</value>
- <value>console-mgr-classes.jar</value>
- <value>jfreechart.jar</value>
- <value>juddi-service.jar</value>
- <value>wsdl4j.jar</value>
- <value>commons-collections.jar</value>
- <value>commons-pool.jar</value>
- <value>juddi.jar</value>
- <value>commons-discovery.jar</value>
- <value>uddi4j.jar</value>
- <value>axis.jar</value>
- <value>commons-dbcp.jar</value>
- <value>jboss-juddiaxis.jar</value>
- <value>trove.jar</value>
- <value>javassist.jar</value>
- <value>jboss-aop-jdk50.jar</value>
- <value>jboss-aspect-library-jdk50.jar</value>
- <value>ejb3-persistence.jar</value>
- <value>commons-validator-1.1.3.jar</value>
- <value>commons-collections.jar</value>
- <value>commons-fileupload.jar</value>
- <value>commons-pool.jar</value>
- <value>hibernate-entitymanager.jar</value>
- <value>jboss-ejb3x.jar</value>
- <value>commons-digester-1.6.jar</value>
- <value>cglib-2.1.1.jar</value>
- <value>commons-discovery.jar</value>
- <value>jboss-annotations-ejb3.jar</value>
- <value>jaxen-1.1-beta-4.jar</value>
- <value>hibernate-annotations.jar</value>
- <value>commons-httpclient.jar</value>
- <value>commons-logging.jar</value>
- <value>commons-vfs.jar</value>
- <value>hibernate3.jar</value>
- <value>commons-logging-api.jar</value>
- <value>asm.jar</value>
- <value>asm-attrs.jar</value>
- <value>commons-lang-2.0.jar</value>
- <value>commons-beanutils.jar</value>
- <value>jboss-ejb3.jar</value>
- <value>dom4j.jar</value>
- <value>commons-codec-1.2.jar</value>
- <value>wsdl4j.jar</value>
- <value>xmlsec.jar</value>
- <value>jbossws.jar</value>
- <value>jboss-bean-deployer.jar</value>
- <value>jboss-microcontainer.jar</value>
- <value>jboss-dependency.jar</value>
- <value>jboss-container.jar</value>
- <value>tomcat-coyote.jar</value>
- <value>commons-collections.jar</value>
- <value>myfaces.jar</value>
- <value>jstl.jar</value>
- <value>commons-digester-1.6.jar</value>
- <value>myfaces-impl.jar</value>
- <value>commons-beanutils.jar</value>
- <value>myfaces-jsf-api.jar</value>
- <value>commons-codec-1.2.jar</value>
- <value>catalina-optional.jar</value>
- <value>tomcat-util.jar</value>
- <value>jasper-compiler.jar</value>
- <value>commons-el.jar</value>
- <value>jasper-compiler-jdt.jar</value>
- <value>tomcat-http.jar</value>
- <value>catalina-manager.jar</value>
- <value>jasper-runtime.jar</value>
- <value>tomcat55-service.jar</value>
- <value>servlets-invoker.jar</value>
- <value>catalina.jar</value>
- <value>naming-resources.jar</value>
- <value>servlets-default.jar</value>
- <value>tomcat-ajp.jar</value>
- <value>commons-modeler.jar</value>
- <value>tomcat-apr.jar</value>
- <value>servlets-webdav.jar</value>
- </set>
- </property>
- <depends>AspectLibrary</depends>
- </bean>
- <bean name="EJBStage2Deployer" class="org.jboss.ejb3.deployers.EJBStage2Deployer">
- <depends>AspectLibrary</depends>
- </bean>
-
- <bean name="AppClientParsingDeployer" class="org.jboss.ejb3.deployers.AppClientParsingDeployer">
- <property name="type">car</property>
- <!-- TODO: check depends -->
- <depends>AspectLibrary</depends>
- </bean>
-
- <bean name="JBossClientParsingDeployer" class="org.jboss.ejb3.deployers.JBossClientParsingDeployer">
- <property name="type">car</property>
- <depends>AppClientParsingDeployer</depends>
- </bean>
-
- <bean name="AppClientScanningDeployer" class="org.jboss.ejb3.deployers.AppClientScanningDeployer">
- <depends>JBossClientParsingDeployer</depends>
- </bean>
-
- <bean name="Ejb3ClientDeployer" class="org.jboss.ejb3.deployers.Ejb3ClientDeployer">
- <property name="type">car</property>
- <property name="kernel"><inject bean="jboss.kernel:service=Kernel"/></property>
- <property name="mbeanServer"><inject bean="JMXKernel" property="mbeanServer"/></property>
- <!-- TODO: check depends -->
- <depends>AspectLibrary</depends>
- <depends>AppClientScanningDeployer</depends>
- </bean>
-
- <!-- EJB3 Cache Factory Registry -->
- <bean name="EJB3CacheFactoryRegistry" class="org.jboss.ejb3.cache.CacheFactoryRegistry">
- <property name="factories">
- <!-- Define each of the registered factories -->
- <map class="java.util.HashMap" keyClass="java.lang.String"
- valueClass="java.lang.Class">
- <!-- NoPassivationCache -->
- <entry>
- <key>NoPassivationCache</key>
- <value>org.jboss.ejb3.cache.NoPassivationCacheFactory</value>
- </entry>
- <!-- SimpleStatefulCache -->
- <entry>
- <key>SimpleStatefulCache</key>
- <value>org.jboss.ejb3.cache.simple.SimpleStatefulCacheFactory</value>
- </entry>
- <!-- StatefulTreeCache -->
- <entry>
- <key>StatefulTreeCache</key>
- <value>org.jboss.ejb3.cache.tree.StatefulTreeCacheFactory</value>
- </entry>
- </map>
- </property>
- </bean>
-
- <!-- EJB3 Pool Factory Registry -->
- <bean name="EJB3PoolFactoryRegistry" class="org.jboss.ejb3.pool.PoolFactoryRegistry">
- <property name="factories">
- <!-- Define each of the registered factories -->
- <map class="java.util.HashMap" keyClass="java.lang.String"
- valueClass="java.lang.Class">
- <!-- ThreadlocalPool -->
- <entry>
- <key>ThreadlocalPool</key>
- <value>org.jboss.ejb3.pool.ThreadlocalPoolFactory</value>
- </entry>
- <!-- StrictMaxPool -->
- <entry>
- <key>StrictMaxPool</key>
- <value>org.jboss.ejb3.pool.StrictMaxPoolFactory</value>
- </entry>
- </map>
- </property>
- </bean>
-
- <!-- Remoting Proxy Factory Registry -->
- <bean name="EJB3RemoteProxyFactoryRegistry" class="org.jboss.ejb3.remoting.RemoteProxyFactoryRegistry">
- <property name="factories">
- <!-- Define each of the registered factories -->
- <map class="java.util.HashMap" keyClass="java.lang.String"
- valueClass="java.lang.Class">
- <!-- RemoteProxyFactory -->
- <entry>
- <key>RemoteProxyFactory</key>
- <value>org.jboss.ejb3.remoting.RemoteProxyFactory</value>
- </entry>
- <!-- IORFactory -->
- <entry>
- <key>IORFactory</key>
- <value>org.jboss.ejb3.iiop.IORFactory</value>
- </entry>
- <!-- ServiceRemoteProxyFactory -->
- <entry>
- <key>ServiceRemoteProxyFactory</key>
- <value>org.jboss.ejb3.service.ServiceRemoteProxyFactory</value>
- </entry>
- <!-- StatefulClusterProxyFactory -->
- <!-- <entry>
- <key>StatefulClusterProxyFactory</key>
- <value>org.jboss.ejb3.stateful.StatefulClusterProxyFactory</value>
- </entry>-->
- <!-- StatefulRemoteProxyFactory -->
- <entry>
- <key>StatefulRemoteProxyFactory</key>
- <value>org.jboss.ejb3.stateful.StatefulRemoteProxyFactory</value>
- </entry>
- <!-- StatelessClusterProxyFactory -->
- <!-- <entry>
- <key>StatelessClusterProxyFactory</key>
- <value>org.jboss.ejb3.stateless.StatelessClusterProxyFactory</value>
- </entry>-->
- <!-- StatelessRemoteProxyFactory -->
- <entry>
- <key>StatelessRemoteProxyFactory</key>
- <value>org.jboss.ejb3.stateless.StatelessRemoteProxyFactory</value>
- </entry>
- </map>
- </property>
- </bean>
-
- <!-- EJB3 Persistence Manager Factory Registry -->
- <bean name="EJB3PersistenceManagerFactoryRegistry" class="org.jboss.ejb3.cache.persistence.PersistenceManagerFactoryRegistry">
- <property name="factories">
- <!-- Define each of the registered factories -->
- <map class="java.util.HashMap" keyClass="java.lang.String"
- valueClass="java.lang.Class">
- <!-- StatefulSessionFilePersistenceManager -->
- <entry>
- <key>StatefulSessionFilePersistenceManager</key>
- <value>org.jboss.ejb3.cache.simple.StatefulSessionFilePersistenceManagerFactory</value>
- </entry>
- </map>
- </property>
- </bean>
-
- <bean name="JNDIKernelRegistryPlugin" class="org.jboss.ejb3.kernel.JNDIKernelRegistryPlugin"/>
-
- <!-- Persistence Unit deployers -->
- <bean name="PersistenceUnitParsingDeployer" class="org.jboss.ejb3.deployers.PersistenceUnitParsingDeployer">
- <property name="type">car</property>
- </bean>
-
-</deployment>
Deleted: branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deployers/jboss-aspect-library-beans.xml
===================================================================
--- branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deployers/jboss-aspect-library-beans.xml 2012-05-21 14:44:58 UTC (rev 14716)
+++ branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deployers/jboss-aspect-library-beans.xml 2012-05-21 18:28:37 UTC (rev 14717)
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
- Aspect Deployer
--->
-<deployment xmlns="urn:jboss:bean-deployer:2.0">
-
- <!-- Aspect Library -->
- <bean name="AspectLibrary" class="org.jboss.aop.deployers.JBossAspectLibrary">
- <property name="aspectManager"><inject bean="AspectManager"/></property>
- </bean>
-
- <!-- Add the JMX -->
- <aop:lifecycle-configure xmlns:aop="urn:jboss:aop-beans:1.0"
- name="JMXAdvice"
- class="org.jboss.aop.microcontainer.aspects.jmx.JMXLifecycleCallback"
- classes="@org.jboss.aop.microcontainer.aspects.jmx.JMX"
- manager-bean="AspectManager"
- manager-property="aspectManager">
- <property name="mbeanServer"><inject bean="JMXKernel" property="mbeanServer"/></property>
- </aop:lifecycle-configure>
-
-</deployment>
Deleted: branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deployers/jca-deployers-beans.xml
===================================================================
--- branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deployers/jca-deployers-beans.xml 2012-05-21 14:44:58 UTC (rev 14716)
+++ branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deployers/jca-deployers-beans.xml 2012-05-21 18:28:37 UTC (rev 14717)
@@ -1,121 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
- JCA Deployers
- $Id: jca-deployers-beans.xml 7115 2008-01-10 23:23:32Z pmuir $
--->
-<deployment xmlns="urn:jboss:bean-deployer:2.0">
-
- <bean name="JCAMetaDataRepository" class="org.jboss.resource.metadata.repository.DefaultJCAMetaDataRepository"/>
-
- <!-- RAR Deployment -->
- <bean name="RARParserDeployer" class="org.jboss.resource.deployers.RARParserDeployer">
- <property name="metaDataRepository"><inject bean="JCAMetaDataRepository"/></property>
- <property name="type">rar</property>
- </bean>
-
- <bean name="RARDeployer" class="org.jboss.resource.deployers.RARDeployer">
- <property name="workManagerName">jboss.jca:service=WorkManager</property>
- <property name="XATerminatorName">jboss:service=TransactionManager</property>
- <property name="type">rar</property>
- </bean>
-
-
-
- <!-- ConnectionFactory Deployment - ->
-
- <bean name="ConnectionFactoryDeployer" class="org.jboss.system.deployers.ServiceXSLDeployer">
- <property name="suffix">-ds.xml</property>
- <property name="XSLPath">stylesheets/ConnectionFactoryTemplate.xsl</property>
- <property name="type">jca-ds</property>
- </bean>
-
- -->
-
- <bean name="MCFBuilder" class="org.jboss.resource.deployers.builder.ManagedConnectionFactoryBuilder">
- <property name="metaDataRepository"><inject bean="JCAMetaDataRepository"/></property>
- </bean>
-
- <bean name="PoolBuilder" class="org.jboss.resource.deployers.builder.ManagedConnectionPoolBuilder"/>
- <bean name="ConnectionManagerBuilder" class="org.jboss.resource.deployers.builder.ConnectionManagerBuilder"/>
- <bean name="ConnectionFactoryBindingBuilder" class="org.jboss.resource.deployers.builder.ConnectionFactoryBindingBuilder"/>
- <bean name="MetaDataTypeMappingBuilder" class="org.jboss.resource.deployers.builder.MetaDataTypeMappingBuilder"/>
-
- <bean name="ManagedConnectionFactoryParserDeployer" class="org.jboss.resource.deployers.ManagedConnectionFactoryParserDeployer">
- <property name="repository"><inject bean="JCAMetaDataRepository"></inject></property>
- <property name="suffix">-ds.xml</property>
- <property name="type">jca-ds</property>
- </bean>
-
- <bean name="ManagedConnectionFactoryDeployer" class="org.jboss.resource.deployers.ManagedConnectionFactoryDeployer">
- <property name="repository"><inject bean="JCAMetaDataRepository"></inject></property>
- <property name="builders">
- <list>
- <inject bean="MCFBuilder"/>
- <inject bean="PoolBuilder"/>
- <inject bean="ConnectionManagerBuilder"/>
- <inject bean="ConnectionFactoryBindingBuilder"/>
- <inject bean="MetaDataTypeMappingBuilder"/>
- </list>
- </property>
- <property name="type">jca-ds</property>
- </bean>
-
- <!-- The template for creating a datasource -->
- <bean name="LocalTxDataSourceTemplate" class="org.jboss.resource.deployers.management.DsDataSourceTemplate">
- <property name="info"><inject bean="LocalTxDataSourceTemplateInfo"/></property>
- </bean>
- <bean name="LocalTxDataSourceTemplateInfo"
- class="org.jboss.resource.deployers.management.DsDataSourceTemplateInfo">
- <constructor>
- <parameter>LocalTxDataSourceTemplate</parameter>
- <parameter>A template for datasource *-ds.xml deployments</parameter>
- <parameter>local-tx-datasource</parameter>
- </constructor>
- </bean>
- <bean name="XADataSourceTemplate" class="org.jboss.resource.deployers.management.DsDataSourceTemplate">
- <property name="info"><inject bean="XADataSourceTemplateInfo"/></property>
- </bean>
- <bean name="XADataSourceTemplateInfo"
- class="org.jboss.resource.deployers.management.DsDataSourceTemplateInfo">
- <constructor>
- <parameter>XADataSourceTemplate</parameter>
- <parameter>A template for xa-datasource *-ds.xml deployments</parameter>
- <parameter>xa-datasource</parameter>
- </constructor>
- </bean>
- <bean name="NoTxDataSourceTemplate" class="org.jboss.resource.deployers.management.DsDataSourceTemplate">
- <property name="info"><inject bean="NoTxDataSourceTemplateInfo"/></property>
- </bean>
- <bean name="NoTxDataSourceTemplateInfo"
- class="org.jboss.resource.deployers.management.DsDataSourceTemplateInfo">
- <constructor>
- <parameter>NoTxDataSourceTemplate</parameter>
- <parameter>A template for no-tx-datasource *-ds.xml deployments</parameter>
- <parameter>no-tx-datasource</parameter>
- </constructor>
- </bean>
- <bean name="TxConnectionFactoryTemplate" class="org.jboss.resource.deployers.management.DsDataSourceTemplate">
- <property name="info"><inject bean="TxConnectionFactoryTemplateInfo"/></property>
- </bean>
- <bean name="TxConnectionFactoryTemplateInfo"
- class="org.jboss.resource.deployers.management.DsDataSourceTemplateInfo">
- <constructor>
- <parameter>TxConnectionFactoryTemplate</parameter>
- <parameter>A template for tx-connection-factory *-ds.xml deployments</parameter>
- <parameter>tx-connection-factory</parameter>
- </constructor>
- </bean>
- <bean name="NoTxConnectionFactoryTemplate" class="org.jboss.resource.deployers.management.DsDataSourceTemplate">
- <property name="info"><inject bean="NoTxConnectionFactoryTemplateInfo"/></property>
- </bean>
- <bean name="NoTxConnectionFactoryTemplateInfo"
- class="org.jboss.resource.deployers.management.DsDataSourceTemplateInfo">
- <constructor>
- <parameter>NoTxConnectionFactoryTemplate</parameter>
- <parameter>A template for no-tx-connection-factory *-ds.xml deployments</parameter>
- <parameter>no-tx-connection-factory</parameter>
- </constructor>
- </bean>
-
-</deployment>
Deleted: branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deployers/metadata-beans.xml
===================================================================
--- branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deployers/metadata-beans.xml 2012-05-21 14:44:58 UTC (rev 14716)
+++ branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deployers/metadata-beans.xml 2012-05-21 18:28:37 UTC (rev 14717)
@@ -1,237 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
- MetaData configuration
- $Id: metadata-beans.xml 6916 2007-12-05 17:53:00Z pmuir $
--->
-<deployment xmlns="urn:jboss:bean-deployer:2.0">
-
- <!-- The reference metdata resolving deployer
- -->
- <bean name="ReferenceMetaDataResolverDeployer"
- class="org.jboss.deployment.ReferenceMetaDataResolverDeployer">
- </bean>
- <bean name="AnnotationMetaDataDeployer"
- class="org.jboss.deployment.AnnotationMetaDataDeployer">
- <property name="metaDataCompleteIsDefault">true</property>
- </bean>
-
- <!-- The schema location to JBossXB binding class mappings. We specify the dtd/xsd name
- of the schema as the location to work with legacy dtd as well as namespace based
- documents.
- -->
- <bean name="SchemaResolverConfig"
- class="org.jboss.xb.binding.sunday.unmarshalling.SchemaResolverConfig">
-
- <!-- schemaLocation to JBossXBuilder binding classes -->
- <property name="bindingClassesByLocations">
- <map keyClass="java.lang.String" valueClass="java.lang.String">
- <!-- EarMetaData -->
- <entry>
- <key>application</key>
- <value>org.jboss.metadata.ear.spec.Ear14MetaData</value>
- </entry>
- <entry>
- <key>application_1_2.dtd</key>
- <value>org.jboss.metadata.ear.spec.Ear13DTDMetaData</value>
- </entry>
- <entry>
- <key>application_1_3.dtd</key>
- <value>org.jboss.metadata.ear.spec.Ear13DTDMetaData</value>
- </entry>
- <entry>
- <key>application_1_4.xsd</key>
- <value>org.jboss.metadata.ear.spec.Ear14MetaData</value>
- </entry>
- <entry>
- <key>application_5.xsd</key>
- <value>org.jboss.metadata.ear.spec.Ear50MetaData</value>
- </entry>
- <!-- JBossAppMetaData -->
- <entry>
- <key>jboss-app</key>
- <value>org.jboss.metadata.ear.jboss.JBoss50DTDAppMetaData</value>
- </entry>
- <entry>
- <key>jboss-app_3_0.dtd</key>
- <value>org.jboss.metadata.ear.jboss.JBoss50DTDAppMetaData</value>
- </entry>
- <entry>
- <key>jboss-app_3_2.dtd</key>
- <value>org.jboss.metadata.ear.jboss.JBoss50DTDAppMetaData</value>
- </entry>
- <entry>
- <key>jboss-app_4_0.dtd</key>
- <value>org.jboss.metadata.ear.jboss.JBoss50DTDAppMetaData</value>
- </entry>
- <entry>
- <key>jboss-app_4_2.dtd</key>
- <value>org.jboss.metadata.ear.jboss.JBoss50DTDAppMetaData</value>
- </entry>
- <entry>
- <key>jboss-app_5_0.dtd</key>
- <value>org.jboss.metadata.ear.jboss.JBoss50DTDAppMetaData</value>
- </entry>
- <entry>
- <key>jboss-app_5_0.xsd</key>
- <value>org.jboss.metadata.ear.jboss.JBoss50AppMetaData</value>
- </entry>
-
- <!-- ApplicationClientMetaData -->
- <entry>
- <key>application-client</key>
- <value>org.jboss.metadata.client.spec.ApplicationClient14DTDMetaData</value>
- </entry>
- <entry>
- <key>application-client_1_2.dtd</key>
- <value>org.jboss.metadata.client.spec.ApplicationClient14DTDMetaData</value>
- </entry>
- <entry>
- <key>application-client_1_3.dtd</key>
- <value>org.jboss.metadata.client.spec.ApplicationClient14DTDMetaData</value>
- </entry>
- <entry>
- <key>application-client_1_4.xsd</key>
- <value>org.jboss.metadata.client.spec.ApplicationClient14MetaData</value>
- </entry>
- <entry>
- <key>application-client_5.xsd</key>
- <value>org.jboss.metadata.client.spec.ApplicationClient5MetaData</value>
- </entry>
- <!-- ApplicationClientMetaData -->
- <entry>
- <key>jboss-client</key>
- <value>org.jboss.metadata.client.jboss.JBossClient5DTDMetaData</value>
- </entry>
- <entry>
- <key>jboss-client_3_0.dtd</key>
- <value>org.jboss.metadata.client.jboss.JBossClient5DTDMetaData</value>
- </entry>
- <entry>
- <key>jboss-client_3_2.dtd</key>
- <value>org.jboss.metadata.client.jboss.JBossClient5DTDMetaData</value>
- </entry>
- <entry>
- <key>jboss-client_4_0.dtd</key>
- <value>org.jboss.metadata.client.jboss.JBossClient5DTDMetaData</value>
- </entry>
- <entry>
- <key>jboss-client_4_2.dtd</key>
- <value>org.jboss.metadata.client.jboss.JBossClient5DTDMetaData</value>
- </entry>
- <entry>
- <key>jboss-client_5_0.dtd</key>
- <value>org.jboss.metadata.client.jboss.JBossClient5DTDMetaData</value>
- </entry>
- <entry>
- <key>jboss-client_5_0.xsd</key>
- <value>org.jboss.metadata.client.jboss.JBossClient5MetaData</value>
- </entry>
-
- <!-- EjbJarMetaData -->
- <entry>
- <key>ejb-jar</key>
- <value>org.jboss.metadata.ejb.spec.EjbJar20MetaData</value>
- </entry>
- <entry>
- <key>ejb-jar_1_1.dtd</key>
- <value>org.jboss.metadata.ejb.spec.EjbJar1xMetaData</value>
- </entry>
- <entry>
- <key>ejb-jar_2_0.dtd</key>
- <value>org.jboss.metadata.ejb.spec.EjbJar20MetaData</value>
- </entry>
- <entry>
- <key>ejb-jar_2_1.xsd</key>
- <value>org.jboss.metadata.ejb.spec.EjbJar21MetaData</value>
- </entry>
- <entry>
- <key>ejb-jar_3_0.xsd</key>
- <value>org.jboss.metadata.ejb.spec.EjbJar30MetaData</value>
- </entry>
-
- <!-- JBossMetaData -->
- <entry>
- <key>jboss</key>
- <value>org.jboss.metadata.ejb.jboss.JBoss50DTDMetaData</value>
- </entry>
- <entry>
- <key>jboss_3_0.dtd</key>
- <value>org.jboss.metadata.ejb.jboss.JBoss50DTDMetaData</value>
- </entry>
- <entry>
- <key>jboss_3_2.dtd</key>
- <value>org.jboss.metadata.ejb.jboss.JBoss50DTDMetaData</value>
- </entry>
- <entry>
- <key>jboss_4_0.dtd</key>
- <value>org.jboss.metadata.ejb.jboss.JBoss50DTDMetaData</value>
- </entry>
- <entry>
- <key>jboss_4_2.dtd</key>
- <value>org.jboss.metadata.ejb.jboss.JBoss50DTDMetaData</value>
- </entry>
- <entry>
- <key>jboss_5_0.dtd</key>
- <value>org.jboss.metadata.ejb.jboss.JBoss50DTDMetaData</value>
- </entry>
- <entry>
- <key>jboss_5_0.xsd</key>
- <value>org.jboss.metadata.ejb.jboss.JBoss50MetaData</value>
- </entry>
-
- <!-- WebMetaData -->
- <entry>
- <key>web-app</key>
- <value>org.jboss.metadata.web.spec.Web23MetaData</value>
- </entry>
- <entry>
- <key>web-app_2_2.dtd</key>
- <value>org.jboss.metadata.web.spec.Web23MetaData</value>
- </entry>
- <entry>
- <key>web-app_2_3.dtd</key>
- <value>org.jboss.metadata.web.spec.Web23MetaData</value>
- </entry>
- <entry>
- <key>web-app_2_4.xsd</key>
- <value>org.jboss.metadata.web.spec.Web24MetaData</value>
- </entry>
- <entry>
- <key>web-app_2_5.xsd</key>
- <value>org.jboss.metadata.web.spec.Web25MetaData</value>
- </entry>
- <!-- JBossWebMetaData -->
- <entry>
- <key>jboss-web</key>
- <value>org.jboss.metadata.web.jboss.JBoss50DTDWebMetaData</value>
- </entry>
- <entry>
- <key>jboss-web_3_0.dtd</key>
- <value>org.jboss.metadata.web.jboss.JBoss50DTDWebMetaData</value>
- </entry>
- <entry>
- <key>jboss-web_3_2.dtd</key>
- <value>org.jboss.metadata.web.jboss.JBoss50DTDWebMetaData</value>
- </entry>
- <entry>
- <key>jboss-web_4_0.dtd</key>
- <value>org.jboss.metadata.web.jboss.JBoss50DTDWebMetaData</value>
- </entry>
- <entry>
- <key>jboss-web_4_2.dtd</key>
- <value>org.jboss.metadata.web.jboss.JBoss50DTDWebMetaData</value>
- </entry>
- <entry>
- <key>jboss-web_5_0.dtd</key>
- <value>org.jboss.metadata.web.jboss.JBoss50DTDWebMetaData</value>
- </entry>
- <entry>
- <key>jboss-web_5_0.xsd</key>
- <value>org.jboss.metadata.web.jboss.JBoss50WebMetaData</value>
- </entry>
- </map>
- </property>
- </bean>
-
-</deployment>
Deleted: branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deployers/security-deployer-beans.xml
===================================================================
--- branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deployers/security-deployer-beans.xml 2012-05-21 14:44:58 UTC (rev 14716)
+++ branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/deployers/security-deployer-beans.xml 2012-05-21 18:28:37 UTC (rev 14717)
@@ -1,30 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
- Security Deployer
--->
-<deployment xmlns="urn:jboss:bean-deployer:2.0">
- <bean name="SecurityDeployer" class="org.jboss.deployment.security.SecurityDeployer">
- <property name="type">security</property>
- <property name="ignoreSuffixes">
- <set elementClass="java.lang.String">
- <value>xml</value>
- <value>beans</value>
- <value>deployer</value>
- <value>rar</value>
- <value>properties</value>
- </set>
- </property>
- </bean>
-
- <!-- JNDI Object Factory to establish SecurityDomainContext objects -->
- <bean name="SecurityDomainObjectFactory" class="org.jboss.security.integration.SecurityDomainObjectFactory" />
-
- <!-- JNDI Context legacy establishment of java:/jaas/securityDomain -->
- <bean name="JBossSecurityJNDIContextEstablishment" class="org.jboss.security.integration.JNDIContextEstablishment"/>
-
- <!-- JNDI Based Security Management -->
- <bean name="JNDIBasedSecurityManagement" class="org.jboss.security.integration.JNDIBasedSecurityManagement">
- </bean>
-
-</deployment>
Deleted: branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/jndi.properties
===================================================================
--- branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/jndi.properties 2012-05-21 14:44:58 UTC (rev 14716)
+++ branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/jndi.properties 2012-05-21 18:28:37 UTC (rev 14717)
@@ -1,4 +0,0 @@
-# DO NOT EDIT THIS FILE UNLESS YOU KNOW WHAT YOU ARE DOING
-#
-java.naming.factory.initial=org.jboss.naming.JBossRemotingContextFactory
-java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces
Deleted: branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/log4j.xml
===================================================================
--- branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/log4j.xml 2012-05-21 14:44:58 UTC (rev 14716)
+++ branches/community/Seam_2_3/jboss-embedded-bootstrap/src/main/resources/bootstrap/log4j.xml 2012-05-21 18:28:37 UTC (rev 14717)
@@ -1,115 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
-
-<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/" debug="false">
-
- <appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">
- <errorHandler class="org.jboss.logging.util.OnlyOnceErrorHandler"/>
- <param name="Target" value="System.out"/>
- <layout class="org.apache.log4j.PatternLayout">
- <!-- The default pattern: Date Priority [Category] Message\n -->
- <param name="ConversionPattern" value="%-5p [%c{6}] %m%n"/>
- </layout>
- </appender>
-
- <!-- ############### Embedded JBoss AS ################# -->
- <category name="org.jboss">
- <priority value="ERROR"/>
- </category>
- <category name="com.arjuna">
- <priority value="ERROR"/>
- </category>
-
- <!-- EMB-6, JMS activation throws an error due to deployment ordering, but as there is a timeout
- and retry the tests pass. Hide the error message -->
- <category name="jboss.resource.adapter.jms.inflow.JmsActivation">
- <priority value="ERROR"/>
- </category>
-
- <!-- ############### Hibernate logging ################# -->
-
- <category name="org.hibernate">
- <priority value="ERROR"/>
- </category>
-
- <!--
- <category name="org.hibernate.SQL">
- <priority value="TRACE"/>
- </category>
- <category name="org.hibernate.type">
- <priority value="TRACE"/>
- </category>
- <category name="org.hibernate.loader">
- <priority value="TRACE"/>
- </category>
- <category name="org.hibernate.cache">
- <priority value="TRACE"/>
- </category>
- -->
-
- <!-- Ajax4jsf is too noisy -->
- <category name="org.ajax4jsf.cache">
- <priority value="WARN"/>
- </category>
-
-
- <!-- ############### Seam logging ################### -->
- <category name="org.jboss.seam">
- <priority value="WARN"/>
- </category>
-
-
-
- <!-- These things are too noisy
- <category name="org.jboss.seam.jsf.SeamVariableResolver">
- <priority value="INFO"/>
- </category>
- <category name="org.jboss.seam.contexts.Contexts">
- <priority value="INFO"/>
- </category>
- <category name="org.jboss.seam.Component">
- <priority value="INFO"/>
- </category>
- <category name="org.jboss.seam.deployment.Scanner">
- <priority value="INFO"/>
- </category>
- <category name="org.jboss.seam.util.Naming">
- <priority value="INFO"/>
- </category>
- <category name="org.jboss.seam.debug.hot">
- <priority value="INFO"/>
- </category>
- <category name="org.jboss.seam.core.Events">
- <priority value="INFO"/>
- </category>
- -->
-
- <!-- Debugging conversations and persistence contexts
- <category name="org.jboss.seam.core.Manager">
- <priority value="DEBUG"/>
- </category>
- <category name="org.jboss.seam.core.ManagedPersistenceContext">
- <priority value="DEBUG"/>
- </category>
- <category name="org.jboss.seam.jsf.AbstractSeamPhaseListener">
- <priority value="DEBUG"/>
- </category>
- <category name="org.jboss.seam.interceptors.ConversationInterceptor">
- <priority value="DEBUG"/>
- </category>
- <category name="org.jboss.seam.contexts.Lifecycle">
- <priority value="DEBUG"/>
- </category>
- <category name="org.hibernate.impl.SessionImpl">
- <priority value="DEBUG"/>
- </category>
- <category name="org.hibernate.event.def.AbstractFlushingEventListener">
- <priority value="DEBUG"/>
- </category>
- -->
-
- <root>
- <priority value="INFO"/>
- <appender-ref ref="CONSOLE"/>
- </root>
-
-</log4j:configuration>
13 years, 10 months
Seam SVN: r14716 - in branches/community/Seam_2_3/jboss-seam-gen/dist: build-scripts and 1 other directories.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-05-21 10:44:58 -0400 (Mon, 21 May 2012)
New Revision: 14716
Modified:
branches/community/Seam_2_3/jboss-seam-gen/dist/build-scripts/build-war.xml
branches/community/Seam_2_3/jboss-seam-gen/dist/build-scripts/build.xml
branches/community/Seam_2_3/jboss-seam-gen/dist/build.xml
branches/community/Seam_2_3/jboss-seam-gen/dist/test/ActionTest.java
Log:
setup and deploy correctly to AS 7 deployments folder
Modified: branches/community/Seam_2_3/jboss-seam-gen/dist/build-scripts/build-war.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-gen/dist/build-scripts/build-war.xml 2012-05-21 12:49:29 UTC (rev 14715)
+++ branches/community/Seam_2_3/jboss-seam-gen/dist/build-scripts/build-war.xml 2012-05-21 14:44:58 UTC (rev 14716)
@@ -24,8 +24,8 @@
<property name="classes.action.dir" value="${war.dir}/${action.dir}" />
<property name="test.dir" value="test-build" />
<property name="bootstrap.dir" value="${basedir}/bootstrap" />
- <property name="jboss.domain" value="default"/>
- <property name="deploy.dir" value="${jboss.home}/server/${jboss.domain}/deploy" />
+ <property name="jboss.domain" value="standalone"/>
+ <property name="deploy.dir" value="${jboss.home}/${jboss.domain}/deployments"/>
<property name="war.deploy.dir" value="${deploy.dir}/${project.name}.war" />
<property name="packaged.archive" value="${dist.dir}/${project.name}.war"/>
<property name="testng.jar" value="${basedir}/lib/testng.jar" />
Modified: branches/community/Seam_2_3/jboss-seam-gen/dist/build-scripts/build.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-gen/dist/build-scripts/build.xml 2012-05-21 12:49:29 UTC (rev 14715)
+++ branches/community/Seam_2_3/jboss-seam-gen/dist/build-scripts/build.xml 2012-05-21 14:44:58 UTC (rev 14716)
@@ -23,8 +23,8 @@
<property name="war.dir" value="${ear.dir}/${project.name}_war"/>
<property name="test.dir" value="test-build"/>
<property name="bootstrap.dir" value="${basedir}/bootstrap"/>
- <property name="jboss.domain" value="default"/>
- <property name="deploy.dir" value="${jboss.home}/server/${jboss.domain}/deploy"/>
+ <property name="jboss.domain" value="standalone"/>
+ <property name="deploy.dir" value="${jboss.home}/${jboss.domain}/deployments"/>
<property name="ear.deploy.dir" value="${deploy.dir}/${project.name}.ear"/>
<property name="jar.deploy.dir" value="${ear.deploy.dir}/${project.name}.jar"/>
<property name="war.deploy.dir" value="${ear.deploy.dir}/${project.name}.war"/>
Modified: branches/community/Seam_2_3/jboss-seam-gen/dist/build.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-gen/dist/build.xml 2012-05-21 12:49:29 UTC (rev 14715)
+++ branches/community/Seam_2_3/jboss-seam-gen/dist/build.xml 2012-05-21 14:44:58 UTC (rev 14716)
@@ -27,10 +27,10 @@
<property environment="env"/>
<!-- set property defaults (also maintains backwards compatibility) -->
- <condition property="jboss.home" value="${env.JBOSS_HOME}" else="C:/Program Files/jboss-5.1.0.GA">
+ <condition property="jboss.home" value="${env.JBOSS_HOME}" else="C:/Program Files/jboss-as-7.1.1.Final">
<isset property="env.JBOSS_HOME"/>
</condition>
- <property name="jboss.domain" value="default"/>
+ <property name="jboss.domain" value="standalone"/>
<condition property="glassfish.home" value="${env.GLASSFISH_HOME}" else="C:/Program Files/glassfish-v2.1">
<isset property="env.GLASSFISH_HOME"/>
</condition>
@@ -255,7 +255,7 @@
<normalizeProjectName property="project.name.new"/>
<echo message="Accepted project name as: ${project.name.new}"/>
- <property name="old.icefaces" value="n"/>
+<!-- <property name="old.icefaces" value="n"/>
<input addproperty="icefaces.new"
message="Do you want to use ICEfaces instead of RichFaces? [${old.icefaces}]"
validargs="y,n"
@@ -269,7 +269,7 @@
<input addproperty="icefaces.home.new"
message="By default, seam-gen will download the recommended ICEfaces. If you want to use a specific version of ICEfaces, enter the path to ICEfaces [${old.icefaces.home}]"
defaultvalue="${old.icefaces.home}"/>
-
+-->
<condition property="richfaces.skin.new" value="">
<equals arg1="${icefaces.new}" arg2="y"/>
</condition>
@@ -1209,7 +1209,7 @@
<echo message="IDEA Users: Open the project using File > Open project... and select the file ${project.home}/${project.name}.ipr"/>
</target>
- <target name="update-seam" depends="validate-project,copyseam" if="project.exists"
+ <target name="update-seam" depends="validate-project" if="project.exists"
description="Update the project with the latest Seam JARs from the Seam distribution directory.">
<echo message="Copying Seam to the ${project.home}/lib directory..." />
<copy todir="${project.home}/lib" overwrite="true">
@@ -1383,7 +1383,7 @@
</target>
<!-- FIXME: we ask the user for information that isn't needed for this target -->
- <target name="new-test" depends="validate-project,action-input,setup-filters" description="Create a new test">
+<!-- <target name="new-test" depends="validate-project,action-input,setup-filters" description="Create a new test">
<echo message="Creating a new SeamTest subclass for the specified Seam component"/>
<copy file="${templates.dir}/test/ActionTest.java" tofile="${test.file}">
<filterset refid="filters"/>
@@ -1392,6 +1392,7 @@
<filterset refid="filters"/>
</copy>
</target>
+ -->
<target name="new-query" depends="validate-project,query-input,setup-filters">
<echo message="Creating a new query"/>
@@ -1661,6 +1662,7 @@
description="Deploy the EAR or WAR">
<echo message="Deploying project '${project.name}' to JBoss AS"/>
<ant antfile="${project.home}/build.xml" target="deploy" inheritall="false"/>
+
</target>
<target name="undeploy" depends="validate-project" if="project.exists"
@@ -1675,7 +1677,7 @@
<ant antfile="${project.home}/build.xml" target="redeploy" inheritall="false"/>
</target>
- <target name="explode" depends="validate-project" if="project.exists"
+ <target name="explode" depends="validate-project" if="project.exists"
description="Deploy the project as an exploded directory">
<echo message="Deploying project '${project.name}' to JBoss AS as an exploded directory"/>
<ant antfile="${project.home}/build.xml" target="explode" inheritall="false"/>
@@ -1686,20 +1688,18 @@
<echo message="Cleaning, undeploying and deploying project '${project.name}' to JBoss AS as an exploded directory"/>
<ant antfile="${project.home}/build.xml" target="reexplode" inheritall="false"/>
</target>
-
<target name="restart" depends="validate-project" if="project.exists"
description="Restart the exploded directory">
<echo message="Restarting project '${project.name}'"/>
<ant antfile="${project.home}/build.xml" target="restart" inheritall="false"/>
</target>
-
<target name="unexplode" depends="validate-project" if="project.exists"
description="Undeploy the exploded directory">
<echo message="Undeploying exploded directory for project '${project.name}'"/>
<ant antfile="${project.home}/build.xml" target="unexplode" inheritall="false"/>
</target>
-
- <target name="test" depends="validate-project" if="project.exists"
+ <!--
+ <target name="test" depends="validate-project" if="project.exists"
description="Run the automated tests">
<fail message="Cannot run tests because path to project contains spaces">
<condition>
@@ -1712,7 +1712,7 @@
<echo message="Running tests for project '${project.name}'"/>
<ant antfile="${project.home}/build.xml" target="test" inheritall="false"/>
</target>
-
+-->
<target name="clean" depends="validate-project" if="project.exists"
description="Clean the project directory">
<echo message="Cleaning project '${project.name}'"/>
Modified: branches/community/Seam_2_3/jboss-seam-gen/dist/test/ActionTest.java
===================================================================
--- branches/community/Seam_2_3/jboss-seam-gen/dist/test/ActionTest.java 2012-05-21 12:49:29 UTC (rev 14715)
+++ branches/community/Seam_2_3/jboss-seam-gen/dist/test/ActionTest.java 2012-05-21 14:44:58 UTC (rev 14716)
@@ -1,9 +1,9 @@
package @testPackage@;
import org.testng.annotations.Test;
-import org.jboss.seam.mock.SeamTest;
+import org.jboss.seam.mock.JUnitSeamTest;
-public class @interfaceName@Test extends SeamTest {
+public class @interfaceName@Test extends JUnitSeamTest {
@Test
public void test_@methodName@() throws Exception {
13 years, 10 months
Seam SVN: r14715 - in branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-tests/src/test: resources-integration and 1 other directory.
by seam-commits@lists.jboss.org
Author: maschmid
Date: 2012-05-21 08:49:29 -0400 (Mon, 21 May 2012)
New Revision: 14715
Removed:
branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-tests/src/test/resources-integration/testng.xml
branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-tests/src/test/resources/WEB-INF/
branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-tests/src/test/resources/seam.properties
Log:
nestedbooking tests cleanup
Deleted: branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-tests/src/test/resources/seam.properties
===================================================================
--- branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-tests/src/test/resources/seam.properties 2012-05-21 11:52:41 UTC (rev 14714)
+++ branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-tests/src/test/resources/seam.properties 2012-05-21 12:49:29 UTC (rev 14715)
@@ -1,3 +0,0 @@
-#debug is explicitly disabled in test to avoid JBIDE-3623
-#Thu Dec 31 16:24:37 CET 2009
-org.jboss.seam.core.init.debug=false
\ No newline at end of file
Deleted: branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-tests/src/test/resources-integration/testng.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-tests/src/test/resources-integration/testng.xml 2012-05-21 11:52:41 UTC (rev 14714)
+++ branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-tests/src/test/resources-integration/testng.xml 2012-05-21 12:49:29 UTC (rev 14715)
@@ -1,13 +0,0 @@
-<!DOCTYPE suite SYSTEM "http://beust.com/testng/testng-1.0.dtd" >
-
-<suite name="Nested Hotel Booking" verbose="2" parallel="false">
-
- <test name="Nested Hotel Booking">
- <classes>
- <!-- <class name="org.jboss.seam.example.nestedbooking.test.LoginTest"/>-->
- <class name="org.jboss.seam.example.nestedbooking.test.BookingTest"/>
- <!-- <class name="org.jboss.seam.example.nestedbooking.test.ChangePasswordTest"/>-->
- </classes>
- </test>
-
-</suite>
13 years, 10 months
Seam SVN: r14714 - in branches/community/Seam_2_3/distribution: src/main/assembly and 1 other directory.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-05-21 07:52:41 -0400 (Mon, 21 May 2012)
New Revision: 14714
Modified:
branches/community/Seam_2_3/distribution/pom.xml
branches/community/Seam_2_3/distribution/src/main/assembly/seam23migration.txt
Log:
JBSEAM-4955 added migration notes and changed distribution dependency to
seam-reference-guide
Modified: branches/community/Seam_2_3/distribution/pom.xml
===================================================================
--- branches/community/Seam_2_3/distribution/pom.xml 2012-05-21 11:40:29 UTC (rev 14713)
+++ branches/community/Seam_2_3/distribution/pom.xml 2012-05-21 11:52:41 UTC (rev 14714)
@@ -116,6 +116,7 @@
<dependency>
<groupId>org.jboss.seam</groupId>
<artifactId>seam-reference-guide</artifactId>
+ <version>${project.version}</version>
</dependency>
<dependency>
Modified: branches/community/Seam_2_3/distribution/src/main/assembly/seam23migration.txt
===================================================================
--- branches/community/Seam_2_3/distribution/src/main/assembly/seam23migration.txt 2012-05-21 11:40:29 UTC (rev 14713)
+++ branches/community/Seam_2_3/distribution/src/main/assembly/seam23migration.txt 2012-05-21 11:52:41 UTC (rev 14714)
@@ -35,3 +35,17 @@
The "provided" platform is now JBoss AS 7.1.x, therefore all Java EE dependencies included
in AS 7 are now marked as provided.
+Seam UI tags
+--------------------------
+We use Richfaces CDK for generation of Seam UI taglib, unfortunately Richfaces CDK 4 doesn't support to create custom tags for converter or validator:
+Affected seam tags are:
+ convertEntity
+ convertEnum
+ convertAtomicBoolean
+ convertAtomicInteger
+ convertAtomicLong
+ validateFormattedText
+There can be used standard JSF 2 tags like f:converter or f:validator for the simulating the old behaviour of s:convert* or s:validate* tags.
+
+
+
13 years, 10 months
Seam SVN: r14713 - branches/community/Seam_2_3/jboss-seam/src/main/java/org/jboss/seam/core.
by seam-commits@lists.jboss.org
Author: maschmid
Date: 2012-05-21 07:40:29 -0400 (Mon, 21 May 2012)
New Revision: 14713
Modified:
branches/community/Seam_2_3/jboss-seam/src/main/java/org/jboss/seam/core/SynchronizationInterceptor.java
Log:
JBSEAM-4943 fix style
Modified: branches/community/Seam_2_3/jboss-seam/src/main/java/org/jboss/seam/core/SynchronizationInterceptor.java
===================================================================
--- branches/community/Seam_2_3/jboss-seam/src/main/java/org/jboss/seam/core/SynchronizationInterceptor.java 2012-05-21 11:13:37 UTC (rev 14712)
+++ branches/community/Seam_2_3/jboss-seam/src/main/java/org/jboss/seam/core/SynchronizationInterceptor.java 2012-05-21 11:40:29 UTC (rev 14713)
@@ -49,7 +49,7 @@
public boolean isInterceptorEnabled()
{
// JBSEAM-4943
- return getComponent().isSynchronize() && !ComponentType.STATEFUL_SESSION_BEAN.equals(getComponent().getType());
+ return getComponent().isSynchronize() && getComponent().getType() != ComponentType.STATEFUL_SESSION_BEAN;
}
}
13 years, 10 months