[1436] | 1 | <project name="mappaint" default="build" basedir=".">
|
---|
| 2 |
|
---|
[3588] | 3 | <!-- There's no josm.jar in the svn, so point "josm" to a local copy of your JOSM binary -->
|
---|
[3780] | 4 | <property name="josm" location="../../core/dist/josm-custom.jar" />
|
---|
| 5 | <!--<property name="josm" location="../josm/josm-latest.jar" ></property>-->
|
---|
[3588] | 6 |
|
---|
| 7 | <!-- target directory to place the plugin in -->
|
---|
| 8 | <!-- Windows has a different home directory scheme then unix/linux -->
|
---|
| 9 | <!-- I don't know an automatic way to find it with ant :-(, if you know, please fix -->
|
---|
| 10 | <property name="plugins" location="${user.home}/.josm/plugins" ></property>
|
---|
| 11 | <!--<property name="plugins" location="${user.home}/Anwendungsdaten/JOSM/plugins" ></property>-->
|
---|
[1436] | 12 |
|
---|
[3588] | 13 | <!-- you should not need to modify anything below this! -->
|
---|
[1436] | 14 |
|
---|
| 15 |
|
---|
| 16 | <target name="init">
|
---|
| 17 | <mkdir dir="build"></mkdir>
|
---|
| 18 | <mkdir dir="dist"></mkdir>
|
---|
| 19 | </target>
|
---|
| 20 |
|
---|
| 21 | <target name="compile" depends="init">
|
---|
[4276] | 22 | <javac srcdir="src" classpath="${josm}" destdir="build" debug="true" source="1.5" target="1.5">
|
---|
[1436] | 23 | <include name="**/*.java" />
|
---|
| 24 | </javac>
|
---|
| 25 | </target>
|
---|
| 26 |
|
---|
| 27 | <target name="build" depends="compile">
|
---|
[2768] | 28 | <copy todir="build/standard">
|
---|
| 29 | <fileset dir="styles/standard"></fileset>
|
---|
[1436] | 30 | </copy>
|
---|
[4428] | 31 | <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false">
|
---|
| 32 | <env key="LANG" value="C"/>
|
---|
| 33 | <arg value="info"/>
|
---|
| 34 | <arg value="--xml"/>
|
---|
| 35 | <arg value="."/>
|
---|
| 36 | </exec>
|
---|
| 37 | <xmlproperty file="REVISION" prefix="version" keepRoot="false" collapseAttributes="true"/>
|
---|
| 38 | <delete file="REVISION"/>
|
---|
[1436] | 39 | <jar destfile="dist/mappaint.jar" basedir="build">
|
---|
| 40 | <manifest>
|
---|
| 41 | <attribute name="Plugin-Class" value="mappaint.MapPaintPlugin" />
|
---|
[3780] | 42 | <attribute name="Plugin-Description" value="An alternative render for the map with colouring, line thickness and icons.<br>" />
|
---|
[4428] | 43 | <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
|
---|
| 44 | <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
|
---|
| 45 | <attribute name="Author" value="Nick Whitelegg / Ulf Lamping"/>
|
---|
[1436] | 46 | </manifest>
|
---|
| 47 | </jar>
|
---|
| 48 | </target>
|
---|
| 49 |
|
---|
| 50 | <target name="clean">
|
---|
| 51 | <delete dir="build" />
|
---|
| 52 | <delete dir="dist" />
|
---|
| 53 | </target>
|
---|
| 54 |
|
---|
[3780] | 55 | <target name="clean_install">
|
---|
| 56 | <delete file="${plugins}/mappaint.jar" />
|
---|
| 57 | </target>
|
---|
| 58 |
|
---|
[1436] | 59 | <target name="install" depends="build">
|
---|
[3588] | 60 | <copy file="dist/mappaint.jar" todir="${plugins}"/>
|
---|
[1436] | 61 | </target>
|
---|
| 62 |
|
---|
| 63 | </project>
|
---|