summaryrefslogtreecommitdiff
path: root/wotonomy-test/build.xml
diff options
context:
space:
mode:
authorBenjamin Culkin <scorpress@gmail.com>2024-05-21 17:07:23 -0400
committerBenjamin Culkin <scorpress@gmail.com>2024-05-21 17:07:23 -0400
commit8283e417245b26abd290f7e6fd0511869802fc82 (patch)
treeab9a6b3593d4ce5b059dbcd723fdc112edd2613d /wotonomy-test/build.xml
parent59b10ba33f4c0b1d399b5d31b7a07380abb62677 (diff)
Rename to avoid name conflict
Diffstat (limited to 'wotonomy-test/build.xml')
-rw-r--r--wotonomy-test/build.xml66
1 files changed, 0 insertions, 66 deletions
diff --git a/wotonomy-test/build.xml b/wotonomy-test/build.xml
deleted file mode 100644
index 4104184..0000000
--- a/wotonomy-test/build.xml
+++ /dev/null
@@ -1,66 +0,0 @@
-<project name="wotonomy" default="all" basedir=".">
-
- <!--
- Sets the compiler property.
- Options are "classic" or "modern" or "jikes".
- -->
- <property name="build.compiler" value="modern"/>
-
- <!--
- Builds the application.
- Requires wotonomy.jar from the parent directory.
- -->
- <target name="all">
- <javac srcdir="WEB-INF/classes" destdir="WEB-INF/classes" includes="**/*.java">
- <classpath>
- <pathelement location="../wotonomy.jar" />
- <pathelement location="../lib/servlet.jar" />
- </classpath>
- </javac>
- </target>
-
- <target name="war">
- <delete file="MyTest.woa.war"/>
- <mkdir dir="WEB-INF/lib"/>
- <copy file="../wotonomy.jar" todir="WEB-INF/lib"/>
- <jar jarfile="MyTest.woa.war" basedir="."
- includes="WEB-INF"/>
- </target>
-
- <!--
- Builds an executable jar file containing
- the license file, anything in the images
- directory, and everything in net/wotonomy,
- but excludes all .java source files.
- -->
- <target name="library">
- <delete file="wotonomy.jar"/>
- <jar jarfile="wotonomy.jar" basedir="."
- manifest="manifest.txt"
- includes="license.txt,net/**,images/**,com/**,gui/**,org/**"
- excludes="**/*.java"/>
- </target>
-
- <!--
- Deletes all class files in the wotonomy
- directories, and any recognized temp files.
- -->
- <target name="clean">
- <delete dir="." includes="**/*.class,**/*.~*"/>
- </target>
-
- <!--
- Runs the test suite.
- -->
- <target name="run" depends="all">
- <java classname="net.wotonomy.test.Test" fork="yes"
- jvmargs="" args="-monitor" >
- <classpath>
- <pathelement location="." />
- <pathelement location="lib/xp.jar" />
- <pathelement location="lib/servlet.jar" />
- </classpath>
- </java>
- </target>
-
-</project>