[jboss-cvs] jboss-seam/examples/seampay ...
Gavin King
gavin.king at jboss.com
Tue Dec 5 08:29:39 EST 2006
User: gavin
Date: 06/12/05 08:29:39
Modified: examples/seampay build.xml
Log:
migrate to new build
Revision Changes Path
1.2 +9 -85 jboss-seam/examples/seampay/build.xml
(In the diff below, changes in quantity of whitespace are not shown.)
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/examples/seampay/build.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- build.xml 20 Oct 2006 16:51:26 -0000 1.1
+++ build.xml 5 Dec 2006 13:29:39 -0000 1.2
@@ -1,96 +1,20 @@
<?xml version="1.0"?>
-<project name="CRUD" default="deploy" basedir=".">
+<project name="Payments" default="deploy" basedir=".">
<!-- Example name -->
<property name="Name" value="Seam Payment Example"/>
<property name="example.name" value="jboss-seam-pay"/>
- <!-- WAR -->
- <zipfileset id="example.war.docroot"
- dir="view">
- <include name="**/*"/>
- </zipfileset>
-
- <zipfileset id="example.war.webinf"
- prefix="WEB-INF"
- dir="resources/WEB-INF" >
- <patternset refid="meta.files"/>
- </zipfileset>
-
- <zipfileset id="example.war.webinf.lib"
- prefix="WEB-INF/lib"
- dir="../../facelets/lib">
- <include name="*.jar"/>
- </zipfileset>
-
- <zipfileset id="example.war.webinf.lib.extra"
- prefix="WEB-INF/lib"
- refid="extra.seam.jar"/>
-
- <!-- EJB3 -->
- <fileset id="example.ejb3.root"
- dir="resources">
- <include name="import.sql"/>
- <include name="seam.properties"/>
- <include name="META-INF/ejb-jar.xml"/>
- <include name="META-INF/persistence.xml"/>
- </fileset>
-
- <!-- EAR -->
- <zipfileset id="example.ear.resources"
- prefix="META-INF"
- dir="resources/META-INF">
- <include name="*"/>
- <exclude name="persistence.xml"/>
- <exclude name="META-INF/ejb-jar.xml"/>
- </zipfileset>
-
- <fileset id="example.ejb3.lib" dir="../../lib">
- <include name="_NONE_"/>
- </fileset>
-
- <!-- Test -->
- <fileset id="example.resources" dir="resources">
- <include name="**/*.*"/>
- </fileset>
-
- <!-- Tomcat build -->
- <zipfileset id="example.tomcat.war.webinf"
- prefix="WEB-INF"
- dir="resources/WEB-INF" >
- <include name="web.xml"/>
- <include name="pages.xml"/>
- <include name="components.xml"/>
- <include name="faces-config.xml"/>
- </zipfileset>
-
- <fileset id="example.tomcat.resources"
- dir="resources">
- <include name="seam.properties"/>
- <include name="META-INF/persistence.xml"/>
- <include name="META-INF/ejb-jar.xml"/>
- </fileset>
-
-
- <!-- Deploy -->
- <fileset id="example.deploy"
- dir="resources">
- <include name="_NONE_"/>
- </fileset>
-
- <!-- Undeploy -->
- <patternset id="example.undeploy">
- <include name="_NONE_"/>
- </patternset>
-
<!-- Overrides -->
+ <property name="example.webinf.lib.dir" value="."/>
+ <property name="example.seam.lib" value="yes"/>
+ <property name="example.facelets.lib" value="yes"/>
<property name="src.java.dir" value="src"/>
<property name="src.test.dir" value="src"/>
<property name="test.classpath" value="test.eejb.classpath"/>
<property name="tomcat.conf" value="eejb.conf"/>
-
<import file="../../build.xml"/>
</project>
More information about the jboss-cvs-commits
mailing list