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/jaxb-tools/files/build.xml-2.1.2

21 lines
595 B

<?xml version="1.0"?>
<project name="jaxb" default="jar" basedir=".">
<target name="compile">
<mkdir dir="build"/>
<javac debug="false" srcdir="src" destdir="build">
<classpath>
<fileset dir="lib" includes="**/*.jar"/>
</classpath>
</javac>
<copy todir="build">
<fileset dir="src" includes="**/*.properties"/>
</copy>
</target>
<target name="jar" depends="compile">
<jar destfile="jaxb-tools.jar">
<fileset dir="build" includes="**/*.class"/>
<fileset dir="build" includes="**/*.properties"/>
</jar>
</target>
</project>