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.
gentoo-overlay/dev-java/jdynamite/files/1.2-build.xml

13 lines
310 B

<?xml version="1.0"?>
<project name="jdynamite" default="all" basedir=".">
<target name="compile">
<javac debug="true" srcdir="src" classpath="${gentoo.classpath}" destdir="build"/>
</target>
<target name="jar" depends="compile">
<jar destfile="jdynamite.jar" basedir="build"/>
</target>
</project>