2009-08-11 17:04:31 +00:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
|
|
|
|
<project name="Coffee Manager" default="jar" basedir=".">
|
|
|
|
<target name="init">
|
|
|
|
<tstamp/>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="compile" depends="init">
|
|
|
|
<mkdir dir="build"/>
|
2013-11-19 11:17:37 +00:00
|
|
|
<javac srcdir="org/contikios/coffee" destdir="build" includeantruntime="false" debug="true" />
|
2009-08-11 17:04:31 +00:00
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="clean" depends="init">
|
|
|
|
<delete file="coffee.jar"/>
|
|
|
|
<delete dir="build"/>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="configs" depends="init">
|
|
|
|
<mkdir dir="build"/>
|
|
|
|
<copy todir="build">
|
|
|
|
<fileset file="sky.properties"/>
|
|
|
|
<fileset file="esb.properties"/>
|
|
|
|
</copy>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="jar" depends="init, compile, configs">
|
|
|
|
<jar destfile="coffee.jar" basedir="build">
|
|
|
|
<manifest>
|
2013-11-19 11:17:37 +00:00
|
|
|
<attribute name="Main-Class" value="org.contikios.coffee.CoffeeManager"/>
|
2009-08-11 17:04:31 +00:00
|
|
|
<attribute name="Class-Path" value="."/>
|
|
|
|
</manifest>
|
|
|
|
</jar>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
</project>
|