[5153] | 1 | <project name="utilsplugin" default="dist" basedir=".">
|
---|
[13457] | 2 | <property name="josm" location="../../core/dist/josm-custom.jar" />
|
---|
| 3 | <property name="plugin.dist.dir" value="../../dist"/>
|
---|
| 4 | <property name="plugin.build.dir" value="build"/>
|
---|
| 5 | <property name="plugin.jar" value="${plugin.dist.dir}/${ant.project.name}.jar"/>
|
---|
[12780] | 6 | <property name="ant.build.javac.target" value="1.5"/>
|
---|
| 7 | <target name="init">
|
---|
[13457] | 8 | <mkdir dir="${plugin.build.dir}"/>
|
---|
[12780] | 9 | </target>
|
---|
| 10 | <target name="compile" depends="init">
|
---|
| 11 | <echo message="creating ${plugin.jar}"/>
|
---|
[13457] | 12 | <javac srcdir="src" classpath="${josm}" destdir="${plugin.build.dir}" debug="true">
|
---|
[12780] | 13 | <compilerarg value="-Xlint:deprecation"/>
|
---|
[13457] | 14 | <compilerarg value="-Xlint:unchecked"/>
|
---|
[12780] | 15 | </javac>
|
---|
| 16 | </target>
|
---|
[13457] | 17 | <target name="dist" depends="compile">
|
---|
| 18 | <copy todir="${plugin.build.dir}/images">
|
---|
[12780] | 19 | <fileset dir="images"/>
|
---|
| 20 | </copy>
|
---|
| 21 | <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false">
|
---|
| 22 | <env key="LANG" value="C"/>
|
---|
| 23 | <arg value="info"/>
|
---|
| 24 | <arg value="--xml"/>
|
---|
| 25 | <arg value="."/>
|
---|
| 26 | </exec>
|
---|
| 27 | <xmlproperty file="REVISION" prefix="version" keepRoot="false" collapseAttributes="true"/>
|
---|
| 28 | <delete file="REVISION"/>
|
---|
[13457] | 29 | <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}">
|
---|
[12780] | 30 | <manifest>
|
---|
| 31 | <attribute name="Plugin-Class" value="UtilsPlugin.UtilsPlugin"/>
|
---|
| 32 | <attribute name="Plugin-Description" value="Useful JOSM utilities"/>
|
---|
| 33 | <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
|
---|
[13723] | 34 | <attribute name="Plugin-Mainversion" value="1373"/>
|
---|
[12780] | 35 | <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
|
---|
[13457] | 36 | <attribute name="Author" value="Martijn van Oosterhout"/>
|
---|
[12780] | 37 | </manifest>
|
---|
| 38 | </jar>
|
---|
| 39 | </target>
|
---|
| 40 | <target name="clean">
|
---|
| 41 | <delete dir="${plugin.build.dir}" />
|
---|
| 42 | <delete file="${plugin.jar}" />
|
---|
| 43 | </target>
|
---|
[5076] | 44 | </project>
|
---|