You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

build-15.xml 386B

1234567891011
  1. <project name="Java 5 compilation of test source" default="default" basedir=".">
  2. <target name="default" >
  3. <delete dir="output" failonerror="false"/>
  4. <mkdir dir="output"/>
  5. <javac destdir="output" debug="on" srcdir="." includes="*.java"/>
  6. <zip file="testcode.jar" basedir="output" includes="**/*"/>
  7. <delete dir="output"/>
  8. </target>
  9. </project>