contiki/tools/coffee-manager/build.xml
Fredrik Osterlind b5c94910ac Renamed Java packages to match our contiki-os.org domain. Note that this commit does not affect external dependencies
like /tools/mspsim.

This is a very simple modification that affects a very large number of files in Contiki: Cooja,
/platform/cooja, Collect-view, Coffe-manager, and Cooja simulation files (.csc).

I've gone through Contiki to update all references I could find. Nevertheless, this commit will likely
break external dependencies, like saved Cooja simulation files.
2013-11-20 16:43:27 +01:00

36 lines
914 B
XML

<?xml version="1.0"?>
<project name="Coffee Manager" default="jar" basedir=".">
<target name="init">
<tstamp/>
</target>
<target name="compile" depends="init">
<mkdir dir="build"/>
<javac srcdir="org/contikios/coffee" destdir="build" includeantruntime="false" debug="true" />
</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>
<attribute name="Main-Class" value="org.contikios.coffee.CoffeeManager"/>
<attribute name="Class-Path" value="."/>
</manifest>
</jar>
</target>
</project>