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.
21 lines
600 B
21 lines
600 B
<?xml version="1.0"?>
|
|
|
|
<project name="guice-throwingproviders" basedir="." default="jar">
|
|
|
|
<import file="../../common.xml"/>
|
|
|
|
<path id="compile.classpath">
|
|
<fileset dir="${lib.dir}" includes="*.jar"/>
|
|
<fileset dir="${lib.dir}/build" includes="*.jar"/>
|
|
<pathelement path="../../build/classes"/>
|
|
</path>
|
|
|
|
<target name="jar" depends="compile, manifest" description="Build jar.">
|
|
<jar destfile="${build.dir}/${ant.project.name}-${version}.jar"
|
|
manifest="${build.dir}/META-INF/MANIFEST.MF">
|
|
<fileset dir="${build.dir}/classes" />
|
|
</jar>
|
|
</target>
|
|
|
|
</project>
|