[seam-commits] Seam SVN: r13950 - in branches/community/Seam_2_2: examples/jee5/booking and 1 other directories.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Wed Dec 15 06:15:23 EST 2010


Author: jharting
Date: 2010-12-15 06:15:23 -0500 (Wed, 15 Dec 2010)
New Revision: 13950

Added:
   branches/community/Seam_2_2/examples/jee5/booking/build-jboss6.xml
Removed:
   branches/community/Seam_2_2/examples/jee5/booking/build-jbossas6.xml
Modified:
   branches/community/Seam_2_2/examples/jee5/readme.txt
   branches/community/Seam_2_2/src/test/ftest/examples/jee5/booking/build.xml
Log:
enabled functional tests for the jee5 example on jboss6

Added: branches/community/Seam_2_2/examples/jee5/booking/build-jboss6.xml
===================================================================
--- branches/community/Seam_2_2/examples/jee5/booking/build-jboss6.xml	                        (rev 0)
+++ branches/community/Seam_2_2/examples/jee5/booking/build-jboss6.xml	2010-12-15 11:15:23 UTC (rev 13950)
@@ -0,0 +1,25 @@
+<?xml version="1.0"?>
+
+<project name="Java EE 5 Booking" default="archive" basedir=".">
+
+    <!-- Naming -->
+    <property name="Name"                   value="Java EE 5 Booking Example (JBoss AS 6)"/>
+    <property name="example.name"           value="jboss-seam-jee5-booking"/>
+
+    <!-- resources -->
+    <property name="resources.dir" value="resources" />
+    <property name="dist.dir" value="dist" />
+    <property name="exploded-archives.dir" value="exploded-archives" />
+       
+    <!-- Libraries to include -->
+    <property name="seam.ui.lib"    value="true"/>
+    <property name="seam.debug.lib" value="true"/>
+    <property name="facelets.lib"   value="true"/>
+    <property name="richfaces.lib"   value="true"/>
+	
+	<!-- Hibernate libs are not required for deployment on JBoss AS 6, because they are already in AS jars -->
+	
+    <import file="../../build.xml"/>
+
+</project>
+

Deleted: branches/community/Seam_2_2/examples/jee5/booking/build-jbossas6.xml
===================================================================
--- branches/community/Seam_2_2/examples/jee5/booking/build-jbossas6.xml	2010-12-15 10:08:23 UTC (rev 13949)
+++ branches/community/Seam_2_2/examples/jee5/booking/build-jbossas6.xml	2010-12-15 11:15:23 UTC (rev 13950)
@@ -1,25 +0,0 @@
-<?xml version="1.0"?>
-
-<project name="Java EE 5 Booking" default="archive" basedir=".">
-
-    <!-- Naming -->
-    <property name="Name"                   value="Java EE 5 Booking Example (JBoss AS 6)"/>
-    <property name="example.name"           value="jboss-seam-jee5-booking"/>
-
-    <!-- resources -->
-    <property name="resources.dir" value="resources" />
-    <property name="dist.dir" value="dist" />
-    <property name="exploded-archives.dir" value="exploded-archives" />
-       
-    <!-- Libraries to include -->
-    <property name="seam.ui.lib"    value="true"/>
-    <property name="seam.debug.lib" value="true"/>
-    <property name="facelets.lib"   value="true"/>
-    <property name="richfaces.lib"   value="true"/>
-	
-	<!-- Hibernate libs are not required for deployment on JBoss AS 6, because they are already in AS jars -->
-	
-    <import file="../../build.xml"/>
-
-</project>
-

Modified: branches/community/Seam_2_2/examples/jee5/readme.txt
===================================================================
--- branches/community/Seam_2_2/examples/jee5/readme.txt	2010-12-15 10:08:23 UTC (rev 13949)
+++ branches/community/Seam_2_2/examples/jee5/readme.txt	2010-12-15 11:15:23 UTC (rev 13950)
@@ -146,9 +146,9 @@
 
 JBoss AS 6
 -----------
-AS 6 has got all Hibernate jars required for example. So there is build-jbossas6.xml script for reducing 
+AS 6 has got all Hibernate jars required for example. So there is build-jboss6.xml script for reducing 
 amount of included jars in EAR and WAR archives.
-Just launch ant -f build-jbossas6.xml and then put dist/jboss-seam-jee5-booking.ear into JBoss AS 6 deploy dir.
-Or you can just run  ant -f build-jbossas6.xml deploy, if you have set up jboss.home in build.properties.
+Just launch ant -f build-jboss6.xml and then put dist/jboss-seam-jee5-booking.ear into JBoss AS 6 deploy dir.
+Or you can just run  ant -f build-jboss6.xml deploy, if you have set up jboss.home in build.properties.
  
 

Modified: branches/community/Seam_2_2/src/test/ftest/examples/jee5/booking/build.xml
===================================================================
--- branches/community/Seam_2_2/src/test/ftest/examples/jee5/booking/build.xml	2010-12-15 10:08:23 UTC (rev 13949)
+++ branches/community/Seam_2_2/src/test/ftest/examples/jee5/booking/build.xml	2010-12-15 11:15:23 UTC (rev 13950)
@@ -23,6 +23,7 @@
 <project name="booking.ftest.build" basedir="." default="build">
    <property name="example.name" value="jee5/booking"/>
    <property name="context.path" value="/seam-jee5-booking"/>
+   <property name="jboss6.build.file" value="build-jboss6.xml" />
    
    <import file="../../build.xml" />
 </project>



More information about the seam-commits mailing list