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/ehcache/files/build.xml-1.2.4-r2

20 lines
605 B

<?xml version="1.0"?>
<project name="ehcache" default="jar" basedir=".">
<path id="globalClassPath">
<fileset dir="lib/" includes="*.jar"/>
</path>
<target name="compile">
<mkdir dir="classes"/>
<javac srcdir="src" destdir="classes/" classpathref="globalClassPath"/>
<copy todir="classes/">
<fileset dir="." includes="ehcache-failsafe.xml"/>
</copy>
</target>
<target name="jar" depends="compile">
<jar destfile="ehcache.jar">
<fileset dir="classes" includes="**/*.class"/>
<fileset dir="classes" includes="**/*.xml"/>
</jar>
</target>
</project>