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