[26174] | 1 | <?xml version="1.0" encoding="utf-8"?>
|
---|
[23709] | 2 | <!--
|
---|
| 3 | ** This is a template build file for a JOSM plugin.
|
---|
| 4 | **
|
---|
| 5 | ** Maintaining versions
|
---|
| 6 | ** ====================
|
---|
| 7 | ** see README.template
|
---|
| 8 | **
|
---|
| 9 | ** Usage
|
---|
| 10 | ** =====
|
---|
| 11 | ** To build it run
|
---|
| 12 | **
|
---|
| 13 | ** > ant dist
|
---|
| 14 | **
|
---|
| 15 | ** To install the generated plugin locally (in you default plugin directory) run
|
---|
| 16 | **
|
---|
| 17 | ** > ant install
|
---|
| 18 | **
|
---|
| 19 | ** The generated plugin jar is not automatically available in JOSMs plugin configuration
|
---|
| 20 | ** dialog. You have to check it in first.
|
---|
| 21 | **
|
---|
| 22 | -->
|
---|
| 23 | <project name="ElevationProfile" default="dist" basedir=".">
|
---|
| 24 | <!--
|
---|
| 25 | ************************************************
|
---|
| 26 | ** should not be necessary to change the following properties
|
---|
| 27 | -->
|
---|
[26174] | 28 | <property name="josm" location="../../core/dist/josm-custom.jar"/>
|
---|
| 29 | <property name="josm_stable" location="../../core/dist/3529/josm-tested.jar"/>
|
---|
| 30 | <property name="plugin.build.dir" value="build"/>
|
---|
| 31 | <property name="plugin.src.dir" value="src"/>
|
---|
[23709] | 32 | <!-- this is the directory where the plugin jar is copied to -->
|
---|
| 33 | <property name="ant.build.javac.target" value="1.5"/>
|
---|
[26174] | 34 | <property name="plugin.dist.dir" value="../../dist"/>
|
---|
| 35 | <property name="plugin.jar" value="${plugin.dist.dir}/${ant.project.name}.jar"/>
|
---|
[23709] | 36 | <!--
|
---|
| 37 | **********************************************************
|
---|
| 38 | ** init - initializes the build
|
---|
| 39 | **********************************************************
|
---|
| 40 | -->
|
---|
| 41 | <target name="init">
|
---|
| 42 | <mkdir dir="${plugin.build.dir}"/>
|
---|
| 43 | </target>
|
---|
| 44 | <!--
|
---|
| 45 | **********************************************************
|
---|
| 46 | ** compile - complies the source tree
|
---|
| 47 | **********************************************************
|
---|
| 48 | -->
|
---|
| 49 | <target name="compile" depends="init">
|
---|
| 50 | <echo message="compiling sources for ${plugin.jar} ... "/>
|
---|
| 51 | <javac srcdir="src" classpath="${josm}" debug="true" destdir="${plugin.build.dir}">
|
---|
| 52 | <compilerarg value="-Xlint:deprecation"/>
|
---|
| 53 | <compilerarg value="-Xlint:unchecked"/>
|
---|
| 54 | </javac>
|
---|
| 55 | </target>
|
---|
| 56 | <!--
|
---|
| 57 | **********************************************************
|
---|
| 58 | ** dist - creates the plugin jar
|
---|
| 59 | **********************************************************
|
---|
| 60 | -->
|
---|
| 61 | <target name="dist" depends="compile,revision">
|
---|
[26174] | 62 | <condition property="josm.dist.dir" value="../../dist" else="dist">
|
---|
| 63 | <and>
|
---|
| 64 | <os family="windows"/>
|
---|
| 65 | </and>
|
---|
| 66 | </condition>
|
---|
| 67 | <mkdir dir="${plugin.dist.dir}"/>
|
---|
[23709] | 68 | <echo message="creating ${plugin.jar} ... "/>
|
---|
| 69 | <copy todir="${plugin.build.dir}/images">
|
---|
| 70 | <fileset dir="images"/>
|
---|
| 71 | </copy>
|
---|
[26174] | 72 | <copy todir="${plugin.build.dir}/data">
|
---|
| 73 | <fileset dir="data"/>
|
---|
| 74 | </copy>
|
---|
[23709] | 75 | <copy todir="${plugin.build.dir}">
|
---|
| 76 | <fileset dir=".">
|
---|
[26174] | 77 | <include name="README"/>
|
---|
| 78 | <include name="LICENSE"/>
|
---|
[23709] | 79 | </fileset>
|
---|
| 80 | </copy>
|
---|
| 81 | <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}">
|
---|
[26174] | 82 | <!--
|
---|
[23709] | 83 | ************************************************
|
---|
| 84 | ** configure these properties. Most of them will be copied to the plugins
|
---|
| 85 | ** manifest file. Property values will also show up in the list available
|
---|
| 86 | ** plugins: http://josm.openstreetmap.de/wiki/Plugins.
|
---|
| 87 | **
|
---|
| 88 | ************************************************
|
---|
| 89 | -->
|
---|
| 90 | <manifest>
|
---|
| 91 | <attribute name="Author" value="Oliver Wieland"/>
|
---|
| 92 | <attribute name="Plugin-Class" value="org.openstreetmap.josm.plugins.elevation.ElevationProfilePlugin"/>
|
---|
[25192] | 93 | <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
|
---|
[23770] | 94 | <attribute name="Plugin-Description" value="Shows the elevation profile and some statistical data of a GPX track."/>
|
---|
[26174] | 95 | <attribute name="de_Plugin-Description" value="Zeigt das Höhenprofil und statistische Werte eines GPX-Tracks."/>
|
---|
[23709] | 96 | <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/ElevationProfile"/>
|
---|
[26605] | 97 | <attribute name="Plugin-Mainversion" value="4394"/>
|
---|
[23709] | 98 | <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
|
---|
[26174] | 99 | <attribute name="Plugin-Icon" value="images/elevation.png"/>
|
---|
[23709] | 100 | </manifest>
|
---|
[26174] | 101 | </jar>
|
---|
[23709] | 102 | </target>
|
---|
| 103 | <!--
|
---|
| 104 | **********************************************************
|
---|
| 105 | ** revision - extracts the current revision number for the
|
---|
| 106 | ** file build.number and stores it in the XML property
|
---|
| 107 | ** version.*
|
---|
| 108 | **********************************************************
|
---|
| 109 | -->
|
---|
| 110 | <target name="revision">
|
---|
[26174] | 111 | <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false">
|
---|
| 112 | <env key="LANG" value="C"/>
|
---|
| 113 | <arg value="info"/>
|
---|
| 114 | <arg value="--xml"/>
|
---|
| 115 | <arg value="build.xml"/>
|
---|
| 116 | </exec>
|
---|
| 117 | <xmlproperty file="REVISION" prefix="version" keepRoot="false" collapseAttributes="true"/>
|
---|
| 118 | <echo message="Revision: ${version.entry.commit.revision}"/>
|
---|
| 119 | <delete file="REVISION"/>
|
---|
| 120 | </target>
|
---|
[23709] | 121 | <!--
|
---|
| 122 | **********************************************************
|
---|
| 123 | ** clean - clean up the build environment
|
---|
| 124 | **********************************************************
|
---|
| 125 | -->
|
---|
| 126 | <target name="clean">
|
---|
| 127 | <delete dir="${plugin.build.dir}"/>
|
---|
| 128 | <delete file="${plugin.jar}"/>
|
---|
| 129 | </target>
|
---|
| 130 | <!--
|
---|
| 131 | **********************************************************
|
---|
| 132 | ** install - install the plugin to your local JOSM installation
|
---|
| 133 | **********************************************************
|
---|
| 134 | -->
|
---|
| 135 | <target name="install" depends="dist">
|
---|
| 136 | <property environment="env"/>
|
---|
| 137 | <condition property="josm.plugins.dir" value="${env.APPDATA}/JOSM/plugins" else="${user.home}/.josm/plugins">
|
---|
| 138 | <and>
|
---|
| 139 | <os family="windows"/>
|
---|
| 140 | </and>
|
---|
[26174] | 141 | </condition>
|
---|
[23709] | 142 | <copy file="${plugin.jar}" todir="${josm.plugins.dir}"/>
|
---|
| 143 | </target>
|
---|
| 144 | </project>
|
---|