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/stax-ex/files/build.xml-1.0

18 lines
509 B

<?xml version="1.0"?>
<project name="stax-ex" default="jar" basedir=".">
<target name="compile">
<mkdir dir="build"/>
<javac debug="false" srcdir="src" destdir="build" encoding="UTF-8">
<classpath>
<pathelement path="${classpath}"/>
<fileset dir="lib/" includes="**/*.jar"/>
</classpath>
</javac>
</target>
<target name="jar" depends="compile">
<jar destfile="stax-ex.jar">
<fileset dir="build" includes="**/*.class"/>
</jar>
</target>
</project>