Changeset 34515 in osm for applications/editors/josm/plugins/gpsblam/build.xml
- Timestamp:
- 2018-08-18T17:56:03+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/gpsblam/build.xml
r33776 r34515 5 5 <property name="commit.message" value="Commit message"/> 6 6 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 7 <property name="plugin.main.version" value="1 2636"/>7 <property name="plugin.main.version" value="14153"/> 8 8 9 <!-- 10 ********************************************************** 11 ** include targets that all plugins have in common 12 ********************************************************** 9 <!-- Configure these properties (replace "..." accordingly). 10 See https://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins 13 11 --> 12 <property name="plugin.author" value="Russell Edwards"/> 13 <property name="plugin.class" value="org.openstreetmap.josm.plugins.gpsblam.GPSBlamPlugin"/> 14 <property name="plugin.description" value="Analyse a set of GPS points to obtain its centre and direction of spread."/> 15 <property name="plugin.icon" value="images/mapmode/gpsblam_mode.png"/> 16 <property name="plugin.link" value="https://wiki.openstreetmap.org/wiki/JOSM/Plugins/GPSBlam"/> 17 <!--<property name="plugin.early" value="..."/>--> 18 <!--<property name="plugin.requires" value="..."/>--> 19 <!--<property name="plugin.stage" value="..."/>--> 20 21 <!-- ** include targets that all plugins have in common ** --> 14 22 <import file="../build-common.xml"/> 15 16 <!-- 17 ********************************************************** 18 ** dist - creates the plugin jar 19 ********************************************************** 20 --> 21 <target name="dist" depends="compile,revision"> 22 <echo message="creating ${ant.project.name}.jar ... "/> 23 <copy todir="${plugin.build.dir}/resources"> 24 <fileset dir="resources"/> 25 </copy> 26 <copy todir="${plugin.build.dir}/images"> 27 <fileset dir="images"/> 28 </copy> 29 <copy todir="${plugin.build.dir}/data"> 30 <fileset dir="data"/> 31 </copy> 32 <copy todir="${plugin.build.dir}"> 33 <fileset dir="."> 34 <include name="README"/> 35 <include name="LICENSE"/> 36 </fileset> 37 </copy> 38 <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}" manifestencoding="UTF-8"> 39 <!-- 40 ************************************************ 41 ** configure these properties. Most of them will be copied to the plugins 42 ** manifest file. Property values will also show up in the list available 43 ** plugins: https://josm.openstreetmap.de/wiki/Plugins. 44 ** 45 ************************************************ 46 --> 47 <manifest> 48 <attribute name="Author" value="Russell Edwards"/> 49 <attribute name="Plugin-Class" value="org.openstreetmap.josm.plugins.gpsblam.GPSBlamPlugin"/> 50 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/> 51 <attribute name="Plugin-Description" value="Analyse a set of GPS points to obtain its centre and direction of spread."/> 52 <attribute name="Plugin-Icon" value="images/mapmode/gpsblam_mode.png"/> 53 <attribute name="Plugin-Link" value="https://wiki.openstreetmap.org/wiki/JOSM/Plugins/GPSBlam"/> 54 <attribute name="Plugin-Mainversion" value="${plugin.main.version}"/> 55 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 56 </manifest> 57 </jar> 58 </target> 23 59 24 </project>
Note:
See TracChangeset
for help on using the changeset viewer.