build.xml 854 B

1234567891011121314151617181920212223242526
  1. <project name="CORAM3P" default="compile">
  2. <target name="init" >
  3. <mkdir dir="bin" />
  4. </target>
  5. <target name="compile" depends="init" >
  6. <javac srcdir="src:test" destdir="bin" debug="on" debuglevel="lines,vars,source" source="1.8" includeantruntime="false">
  7. <classpath>
  8. <pathelement location="lib/bcprov-jdk15on-151.jar"/>
  9. <pathelement location="lib/commons-cli-1.2.jar"/>
  10. <pathelement location="lib/commons-io-2.4.jar"/>
  11. <pathelement location="lib/commons-lang3-3.3.2.jar"/>
  12. <pathelement location="lib/jargs.jar"/>
  13. <pathelement location="lib/junit-4.10.jar"/>
  14. <pathelement location="lib/snakeyaml-1.11.jar"/>
  15. <pathelement path="bin"/>
  16. </classpath>
  17. </javac>
  18. </target>
  19. <target name="clean" depends="init" >
  20. <delete dir="bin" />
  21. </target>
  22. </project>