CVS: TapestryBook/hangman1 build.xml,1.1,1.2
Howard Lewis Ship <[email protected]> Thu, 20 Feb 2003 07:14:27 -0800
| Newsgroups | gmane.comp.java.tapestry.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/tapestry/TapestryBook/hangman1
In directory sc8-pr-cvs1:/tmp/cvs-serv16370/hangman1
Modified Files:
build.xml
Log Message:
Checkpoint.
Index: build.xml
===================================================================
RCS file: /cvsroot/tapestry/TapestryBook/hangman1/build.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** build.xml 7 Feb 2003 16:39:03 -0000 1.1
--- build.xml 20 Feb 2003 15:13:52 -0000 1.2
***************
*** 1,82 ****
<?xml version="1.0"?>
<!-- $Id$ -->
!
! <project name="Tapestry Shell Project" default="war">
!
<property name="root.dir" value=".."/>
-
<property file="${root.dir}/common/common.properties"/>
!
! <property file="${common.dir}/build.properties"/>
!
!
! <!-- XXX change to name. -->
!
! <property name="war.file" value="hangman1.war"/>
!
! <path id="project.class.path">
! <fileset dir="${lib.dir}">
! <include name="*.jar"/>
! </fileset>
! </path>
!
!
<target name="clean" description="Deletes derived files.">
! <delete dir="${classes.dir}" quiet="true"/>
<delete file="${war.file}" quiet="true"/>
</target>
-
<target name="compile" description="Compile Java classes.">
<mkdir dir="${classes.dir}"/>
!
! <javac
! srcdir="${src.dir}"
! destdir="${classes.dir}"
! debug="on"
! classpathref="project.class.path"/>
</target>
!
! <target name="war" depends="compile" description="Compile all classes and build the installed WAR.">
! <war warfile="${war.file}" webxml="context/WEB-INF/web.xml">
!
! <fileset dir="context">
! <exclude name="WEB-INF/web.xml"/>
! </fileset>
!
! <classes dir="${classes.dir}"/>
! <classes dir="${src.dir}">
! <exclude name="**/*.java"/>
! <exclude name="**/package.html"/>
! </classes>
! </war>
! </target>
!
! <target name="run" description="Run the Tutorial application." depends="compile">
! <java classname="org.mortbay.jetty.Server" fork="true">
! <classpath>
! <!-- Favor files in src over copies in classes -->
! <pathelement location="${src.dir}"/>
! <pathelement location="${root.dir}/config"/>
!
! <path refid="project.class.path"/>
! <pathelement location="${lib.ext.dir}/${jetty.jar}"/>
! <pathelement location="${lib.ext.dir}/${log4j.jar}"/>
! <pathelement location="${classes.dir}"/>
! </classpath>
!
! <arg value="jetty.xml"/>
!
! <!-- Enable debugging on port 20150 -->
!
! <jvmarg line="-showversion -Xdebug -Xnoagent"/>
! <jvmarg line="-Xrunjdwp:transport=dt_socket,suspend=n,server=y,address=20150"/>
! <sysproperty key="java.compiler" value="NONE"/>
!
! <sysproperty key="net.sf.tapestry.disable-caching" value="true"/>
! <sysproperty key="net.sf.tapestry.enable-reset-service" value="true"/>
! <sysproperty key="org.mortbay.util.FileResource.checkAliases" value="false"/>
!
! </java>
! </target>
!
! </project>
\ No newline at end of file
--- 1,63 ----
<?xml version="1.0"?>
<!-- $Id$ -->
! <project name="Hangman1" default="war">
<property name="root.dir" value=".."/>
<property file="${root.dir}/common/common.properties"/>
! <property file="${common.dir}/build.properties"/>
! <property name="war.file" value="hangman1.war"/>
! <path id="project.class.path">
! <fileset dir="${lib.war.dir}">
! <include name="*.jar"/>
! </fileset>
! </path>
<target name="clean" description="Deletes derived files.">
! <delete dir="${classes.dir}" quiet="true"/>
<delete file="${war.file}" quiet="true"/>
</target>
<target name="compile" description="Compile Java classes.">
<mkdir dir="${classes.dir}"/>
! <javac srcdir="${src.dir}" destdir="${classes.dir}" debug="on"
! classpathref="project.class.path"/>
</target>
! <target name="war" depends="compile"
! description="Compile all classes and build the installed WAR.">
! <war warfile="${war.dir}/${war.file}" webxml="context/WEB-INF/web.xml">
! <fileset dir="context">
! <exclude name="WEB-INF/web.xml"/>
! <exclude name="**/Thumbs.db"/>
! </fileset>
! <classes dir="${classes.dir}"/>
! <classes dir="${src.dir}">
! <exclude name="**/*.java"/>
! <exclude name="**/package.html"/>
! </classes>
! <lib dir="${lib.war.dir}"/>
! </war>
! </target>
! <target name="run" description="Run the Hangman application."
! depends="compile">
! <java classname="org.mortbay.jetty.Server" fork="true">
! <classpath>
! <!-- Favor files in src over copies in classes -->
! <pathelement location="${src.dir}"/>
! <pathelement location="${root.dir}/config"/>
! <path refid="project.class.path"/>
! <pathelement location="${lib.ext.dir}/${jetty.jar}"/>
! <pathelement location="${lib.ext.dir}/${log4j.jar}"/>
! <pathelement location="${classes.dir}"/>
! </classpath>
! <arg value="jetty.xml"/>
! <!-- Enable debugging on port 20150 -->
! <jvmarg line="-showversion -Xdebug -Xnoagent"/>
! <jvmarg
! line="-Xrunjdwp:transport=dt_socket,suspend=n,server=y,address=20150"
! />
! <sysproperty key="java.compiler" value="NONE"/>
! <sysproperty key="net.sf.tapestry.disable-caching" value="true"/>
! <sysproperty key="net.sf.tapestry.enable-reset-service" value="true"
! />
! <sysproperty key="org.mortbay.util.FileResource.checkAliases"
! value="false"/>
! </java>
! </target>
! </project>
-------------------------------------------------------
This SF.net email is sponsored by: SlickEdit Inc. Develop an edge.
The most comprehensive and flexible code editor you can use.
Code faster. C/C++, C#, Java, HTML, XML, many more. FREE 30-Day Trial.
www.slickedit.com/sourceforge