[seam-commits] Seam SVN: r13729 - in branches/community/Seam_2_2: src/test/ftest/examples/groovybooking and 1 other directory.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Wed Sep 8 10:36:48 EDT 2010


Author: jharting
Date: 2010-09-08 10:36:47 -0400 (Wed, 08 Sep 2010)
New Revision: 13729

Modified:
   branches/community/Seam_2_2/examples/groovybooking/build.properties
   branches/community/Seam_2_2/examples/groovybooking/readme.txt
   branches/community/Seam_2_2/src/test/ftest/examples/groovybooking/build.xml
Log:
Fix functional tests for groovybooking example

Modified: branches/community/Seam_2_2/examples/groovybooking/build.properties
===================================================================
--- branches/community/Seam_2_2/examples/groovybooking/build.properties	2010-09-07 14:00:37 UTC (rev 13728)
+++ branches/community/Seam_2_2/examples/groovybooking/build.properties	2010-09-08 14:36:47 UTC (rev 13729)
@@ -1,2 +1,2 @@
-# Uncomment when deploying to JBoss AS 5 (the default)
+# Set to true when deploying to JBoss AS 4
 loadPersistenceUnits=false

Modified: branches/community/Seam_2_2/examples/groovybooking/readme.txt
===================================================================
--- branches/community/Seam_2_2/examples/groovybooking/readme.txt	2010-09-07 14:00:37 UTC (rev 13728)
+++ branches/community/Seam_2_2/examples/groovybooking/readme.txt	2010-09-08 14:36:47 UTC (rev 13729)
@@ -6,8 +6,8 @@
 Thus, you prefix all the typical targets (explode, restart, unexplode) with
 "jbosswar." (e.g., jbosswar.explode, jbosswar.restart, jbosswar.unexplode).
 
-Please note that you need to uncomment the loadPersistenceUnits=true property
-in build.properties when deploying to JBoss AS 5.
+Please note that you need to set the loadPersistenceUnits property to "true"
+in build.properties when deploying to JBoss AS 4.
 
 When editing Groovy files from the src/action directory, you can run ant
 "jbosswar.explode" to see your changes take effect.  When editing Groovy files

Modified: branches/community/Seam_2_2/src/test/ftest/examples/groovybooking/build.xml
===================================================================
--- branches/community/Seam_2_2/src/test/ftest/examples/groovybooking/build.xml	2010-09-07 14:00:37 UTC (rev 13728)
+++ branches/community/Seam_2_2/src/test/ftest/examples/groovybooking/build.xml	2010-09-08 14:36:47 UTC (rev 13729)
@@ -26,13 +26,13 @@
 	<property name="jboss4.undeploy.target" value="jbosswar.unexplode" />
 	<property name="jboss4.context.path" value="/jboss-seam-groovybooking" />
 
-	<property name="loadPersistenceUnits" value="false" />
+	<property name="loadPersistenceUnits" value="true" />
 
 	<target name="set.deploy.properties">
-		<propertyset id="jboss4.deploy.properties" />
-		<propertyset id="jboss5.deploy.properties">
+		<propertyset id="jboss4.deploy.properties">
 			<propertyref name="loadPersistenceUnits" id="loadPersistenceUnits" />
 		</propertyset>
+		<propertyset id="jboss5.deploy.properties" />
 	</target>
 
 	<import file="../build.xml" />



More information about the seam-commits mailing list