[26174] | 1 | <?xml version="1.0" encoding="utf-8"?>
|
---|
[24236] | 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 | ** Use the ant target 'publish' to check in the plugin and make it available to other
|
---|
| 23 | ** JOSM users:
|
---|
| 24 | ** set the properties commit.message and plugin.main.version
|
---|
| 25 | ** and run
|
---|
| 26 | ** > ant publish
|
---|
| 27 | **
|
---|
| 28 | **
|
---|
| 29 | -->
|
---|
| 30 | <project name="utilsplugin2" default="dist" basedir=".">
|
---|
[28807] | 31 |
|
---|
[24236] | 32 | <!-- enter the SVN commit message -->
|
---|
[29241] | 33 | <property name="commit.message" value="Utilsplugin2: validation for pasting tags"/>
|
---|
[24236] | 34 | <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
|
---|
[27852] | 35 | <property name="plugin.main.version" value="4980"/>
|
---|
[28807] | 36 |
|
---|
[24236] | 37 | <!--
|
---|
| 38 | **********************************************************
|
---|
[28807] | 39 | ** include targets that all plugins have in common
|
---|
[24236] | 40 | **********************************************************
|
---|
| 41 | -->
|
---|
[28807] | 42 | <import file="../build-common.xml"/>
|
---|
| 43 |
|
---|
[24236] | 44 | <!--
|
---|
| 45 | **********************************************************
|
---|
| 46 | ** dist - creates the plugin jar
|
---|
| 47 | **********************************************************
|
---|
| 48 | -->
|
---|
| 49 | <target name="dist" depends="compile,revision">
|
---|
| 50 | <echo message="creating ${ant.project.name}.jar ... "/>
|
---|
| 51 | <copy todir="${plugin.build.dir}/images">
|
---|
| 52 | <fileset dir="images"/>
|
---|
| 53 | </copy>
|
---|
[26174] | 54 | <copy todir="${plugin.build.dir}/data">
|
---|
| 55 | <fileset dir="data"/>
|
---|
| 56 | </copy>
|
---|
[24236] | 57 | <copy todir="${plugin.build.dir}">
|
---|
| 58 | <fileset dir=".">
|
---|
[26174] | 59 | <include name="README"/>
|
---|
| 60 | <include name="LICENSE"/>
|
---|
| 61 | <include name="GPL-v2.0.txt"/>
|
---|
| 62 | <include name="GPL-v3.0.txt"/>
|
---|
[24236] | 63 | </fileset>
|
---|
| 64 | </copy>
|
---|
| 65 | <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}">
|
---|
[28807] | 66 | <!--
|
---|
[24236] | 67 | ************************************************
|
---|
| 68 | ** configure these properties. Most of them will be copied to the plugins
|
---|
| 69 | ** manifest file. Property values will also show up in the list available
|
---|
| 70 | ** plugins: http://josm.openstreetmap.de/wiki/Plugins.
|
---|
| 71 | **
|
---|
| 72 | ************************************************
|
---|
[28807] | 73 | -->
|
---|
[24236] | 74 | <manifest>
|
---|
| 75 | <attribute name="Author" value="Kalle Lampila, Upliner, and others"/>
|
---|
[28028] | 76 | <attribute name="Plugin-Class" value="org.openstreetmap.josm.plugins.utilsplugin2.UtilsPlugin2"/>
|
---|
[24236] | 77 | <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
|
---|
| 78 | <attribute name="Plugin-Description" value="Several utilities that make your life easier."/>
|
---|
| 79 | <attribute name="Plugin-Icon" value="images/utils.png"/>
|
---|
[27352] | 80 | <attribute name="Plugin-Link" value="http://josm.openstreetmap.de/wiki/Help/Plugin/UtilsPlugin2"/>
|
---|
[24236] | 81 | <attribute name="Plugin-Mainversion" value="${plugin.main.version}"/>
|
---|
| 82 | <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
|
---|
| 83 | </manifest>
|
---|
| 84 | </jar>
|
---|
| 85 | </target>
|
---|
| 86 | </project>
|
---|