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