[1955] | 1 | <project name="livegps" default="dist" basedir=".">
|
---|
[3410] | 2 | <!-- compilation properties -->
|
---|
| 3 | <property name="josm.build.dir" value="../JOSM"/>
|
---|
| 4 | <property name="josm.home.dir" value="${user.home}/.josm"/>
|
---|
| 5 | <property name="plugin.build.dir" value="build"/>
|
---|
| 6 | <property name="plugin.name" value="${ant.project.name}"/>
|
---|
| 7 | <property name="plugin.jar" value="${plugin.name}.jar"/>
|
---|
| 8 | <property name="livegpsplugin.jar" value="${josm.home.dir}/plugins/livegps.jar"/>
|
---|
| 9 |
|
---|
| 10 | <!-- plugin meta data (enter new version number if anything changed!) -->
|
---|
| 11 | <property name="plugin.version" value="1.0.1"/>
|
---|
| 12 | <property name="plugin.description" value="Allow live GPS feed from a gpsd server (V${plugin.version})."/>
|
---|
| 13 | <property name="plugin.stage" value="50"/>
|
---|
| 14 | <property name="plugin.class" value="livegps.LiveGpsPlugin"/>
|
---|
| 15 |
|
---|
| 16 | <!-- update site meta data -->
|
---|
| 17 | <property name="plugin.site.file" value="josm-site.xml"/>
|
---|
| 18 | <property name="plugin.site.description" value="Josm's LiveGps Update Site"/>
|
---|
| 19 | <property name="plugin.site.url" value="http://www.tegmento.org/~cdaller/josm/livegps/"/>
|
---|
| 20 | <property name="plugin.site.upload.target" value="cdaller@www.tegmento.org:public_html/josm/livegps/"/>
|
---|
| 21 |
|
---|
[1955] | 22 |
|
---|
[3410] | 23 | <target name="dist" depends="compile,site">
|
---|
[3073] | 24 | <!-- images -->
|
---|
| 25 | <copy todir="${plugin.build.dir}/images">
|
---|
| 26 | <fileset dir="images" />
|
---|
| 27 | </copy>
|
---|
[3410] | 28 |
|
---|
| 29 | <!-- create jar file -->
|
---|
| 30 | <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}">
|
---|
[3073] | 31 | <manifest>
|
---|
[3410] | 32 | <attribute name="Plugin-Class" value="${plugin.class}" />
|
---|
| 33 | <attribute name="Plugin-Description" value="${plugin.description}" />
|
---|
| 34 | <attribute name="Plugin-Version" value="${plugin.version}" />
|
---|
| 35 | <!--attribute name="Plugin-Dependencies" value="org.eigenheimstrasse.josm" /-->
|
---|
| 36 | <attribute name="Plugin-Stage" value="${plugin.stage}" />
|
---|
[3073] | 37 | </manifest>
|
---|
| 38 | </jar>
|
---|
| 39 | </target>
|
---|
[1955] | 40 |
|
---|
[3073] | 41 | <target name="compile" depends="init">
|
---|
| 42 | <mkdir dir="${plugin.build.dir}"/>
|
---|
| 43 | <javac srcdir="livegps" destdir="${plugin.build.dir}" debug="true" source="1.5" target="1.5">
|
---|
| 44 | <classpath>
|
---|
| 45 | <pathelement path="${josm.build.dir}/build"/>
|
---|
| 46 | <fileset dir="${josm.build.dir}/lib">
|
---|
| 47 | <include name="**/*.jar"/>
|
---|
| 48 | </fileset>
|
---|
[3410] | 49 | <pathelement location="${livegpsplugin.jar}"/>
|
---|
[3073] | 50 | </classpath>
|
---|
| 51 | </javac>
|
---|
| 52 | </target>
|
---|
[1955] | 53 |
|
---|
[3073] | 54 | <target name="install" depends="dist">
|
---|
[3410] | 55 | <copy file="${plugin.jar}" todir="${josm.home.dir}/plugins" />
|
---|
[3073] | 56 | </target>
|
---|
[1955] | 57 |
|
---|
[3073] | 58 | <target name="init">
|
---|
[3410] | 59 | <echo>java version: ${java.version}</echo>
|
---|
| 60 | </target>
|
---|
[3073] | 61 |
|
---|
| 62 | <target name="clean">
|
---|
| 63 | <delete dir="${plugin.build.dir}" />
|
---|
[3410] | 64 | <delete dir="${plugin.site.file}" />
|
---|
| 65 | <delete dir="${plugin.jar}" />
|
---|
[3073] | 66 | </target>
|
---|
| 67 |
|
---|
[3410] | 68 | <!-- write site description for the given plugin -->
|
---|
| 69 | <target name="site">
|
---|
| 70 | <echo message="creating site description in ${plugin.site.file}"/>
|
---|
| 71 | <echo file="${plugin.site.file}"><?xml version="1.0"?>
|
---|
| 72 | <site version="1.0">
|
---|
| 73 | <!-- meta data of site -->
|
---|
| 74 | <site-info>
|
---|
| 75 | <site-name>${plugin.site.description}</site-name>
|
---|
| 76 | <site-url>${plugin.site.url}</site-url>
|
---|
| 77 | </site-info>
|
---|
| 78 |
|
---|
| 79 | <!-- plugins available on this site -->
|
---|
| 80 | <plugins>
|
---|
| 81 | <plugin id="${ant.project.name}" version="${plugin.version}">
|
---|
| 82 | <name>${ant.project.name}</name>
|
---|
| 83 | <description>${plugin.description}</description>
|
---|
| 84 | <resources>
|
---|
| 85 | <resource src="${plugin.site.url}/${plugin.jar}"
|
---|
| 86 | target="$${josm.user.dir}/plugins/${plugin.jar}"/>
|
---|
| 87 | </resources>
|
---|
| 88 | </plugin>
|
---|
| 89 | </plugins>
|
---|
| 90 | </site>
|
---|
| 91 | </echo>
|
---|
| 92 | </target>
|
---|
| 93 |
|
---|
| 94 | <!-- upload the site description and the jar file via ssh -->
|
---|
| 95 | <target name="upload" depends="dist,site">
|
---|
| 96 | <echo message="uploading jar and site description to ${plugin.site.upload.target}"/>
|
---|
| 97 | <exec executable="scp">
|
---|
| 98 | <arg value="${plugin.jar}"/>
|
---|
| 99 | <arg value="${plugin.site.file}"/>
|
---|
| 100 | <arg value="${plugin.site.upload.target}"/>
|
---|
| 101 | </exec>
|
---|
| 102 | </target>
|
---|
| 103 |
|
---|
[1955] | 104 | </project>
|
---|