[seam-commits] Seam SVN: r13920 - branches/community/Seam_2_2/examples/blog.
seam-commits at lists.jboss.org
seam-commits at lists.jboss.org
Fri Nov 19 11:27:20 EST 2010
Author: manaRH
Date: 2010-11-19 11:27:19 -0500 (Fri, 19 Nov 2010)
New Revision: 13920
Modified:
branches/community/Seam_2_2/examples/blog/build-jboss6.xml
branches/community/Seam_2_2/examples/blog/build.xml
branches/community/Seam_2_2/examples/blog/readme.txt
Log:
JBSEAM-4698, JBSEAM-4714 added build script for deployment of Blog example into JBoss AS 6
Modified: branches/community/Seam_2_2/examples/blog/build-jboss6.xml
===================================================================
--- branches/community/Seam_2_2/examples/blog/build-jboss6.xml 2010-11-19 16:02:14 UTC (rev 13919)
+++ branches/community/Seam_2_2/examples/blog/build-jboss6.xml 2010-11-19 16:27:19 UTC (rev 13920)
@@ -6,7 +6,12 @@
<property name="Name" value="Seam Blog Example"/>
<property name="example.name" value="jboss-seam-blog"/>
<property name="jboss6" value="yes"/>
-
+ <!-- Libraries to include -->
+ <property name="seam.ui.lib" value="yes"/>
+ <property name="seam.debug.lib" value="yes"/>
+ <property name="facelets.lib" value="yes"/>
+ <property name="search.lib" value="yes"/>
+ <property name="cache.lib" value="yes"/>
<target name="init" depends="preparesrc">
<antcall target="SeamExample.init"/>
Modified: branches/community/Seam_2_2/examples/blog/build.xml
===================================================================
--- branches/community/Seam_2_2/examples/blog/build.xml 2010-11-19 16:02:14 UTC (rev 13919)
+++ branches/community/Seam_2_2/examples/blog/build.xml 2010-11-19 16:27:19 UTC (rev 13920)
@@ -20,11 +20,11 @@
<target name="jboss42" description="Build the Blog example artifacts, and deploy to JBoss AS 4.2.x.GA">
<ant antfile="build-jboss42.xml"/>
- </target>
+ </target>
+ <import file="../build.xml"/>
+
<target name="jboss6" description="Build the Blog example artifacts, and deploy to JBoss AS 6">
<ant antfile="build-jboss6.xml"/>
</target>
-
- <import file="../build.xml"/>
</project>
Modified: branches/community/Seam_2_2/examples/blog/readme.txt
===================================================================
--- branches/community/Seam_2_2/examples/blog/readme.txt 2010-11-19 16:02:14 UTC (rev 13919)
+++ branches/community/Seam_2_2/examples/blog/readme.txt 2010-11-19 16:27:19 UTC (rev 13920)
@@ -10,6 +10,7 @@
JBoss AS 6 needs new hibernate search and hibernate-commons-annotations, and more source code enhancement due Hibernate Search and Lucene-Core
API changes. Therefore use ant target jboss6 for deploying to JBoss AS 6 M5 and later. For instance:
-$ant jboss6 -Djboss6=yes
+ ant -f build-jboss6.xml
+
example.name=blog
More information about the seam-commits
mailing list