|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | <project name="conflation" default="dist" basedir="."> |
3 | | - |
4 | | - <property file="build.properties" /> |
5 | | - |
6 | | - <!-- enter the SVN commit message --> |
7 | | - <property name="commit.message" value="Conflation"/> |
8 | | - <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> |
9 | | - <property name="plugin.main.version" value="${josm.required.version}"/> |
10 | | - |
11 | | - <property name="plugin.author" value="Josh Doe"/> |
12 | | - <property name="plugin.class" value="org.openstreetmap.josm.plugins.conflation.ConflationPlugin"/> |
13 | | - <property name="plugin.description" value="Tool for conflating data (matching and merging)."/> |
14 | | - <property name="plugin.icon" value="images/dialogs/conflation.png"/> |
15 | | - <property name="plugin.link" value="https://wiki.openstreetmap.org/wiki/JOSM/Plugins/Conflation"/> |
16 | | - <property name="plugin.requires" value="jts;utilsplugin2"/> |
17 | | - <property name="plugin.canloadatruntime" value="true"/> |
18 | | - <property name="version.entry.commit.revision" value="${plugin.version}"/> |
19 | | - |
20 | | - <target name="additional-manifest"> |
21 | | - <manifest file="MANIFEST" mode="update"> |
22 | | - <attribute name="11609_Plugin-Url" value="v0.5.5;https://github.com/JOSM/conflation/releases/download/v0.5.5/conflation.jar" /> |
23 | | - <attribute name="12859_Plugin-Url" value="v0.5.6;https://github.com/JOSM/conflation/releases/download/v0.5.6/conflation.jar" /> |
24 | | - <attribute name="13561_Plugin-Url" value="v0.5.7;https://github.com/JOSM/conflation/releases/download/v0.5.7/conflation.jar" /> |
25 | | - <attribute name="13564_Plugin-Url" value="v0.6.0;https://github.com/JOSM/conflation/releases/download/v0.6.0/conflation.jar" /> |
26 | | - <attribute name="14371_Plugin-Url" value="v0.6.5;https://github.com/JOSM/conflation/releases/download/v0.6.5/conflation.jar" /> |
27 | | - <attribute name="16799_Plugin-Url" value="v0.6.6;https://github.com/JOSM/conflation/releases/download/v0.6.6/conflation.jar" /> |
28 | | - </manifest> |
29 | | - </target> |
30 | | - |
31 | | - <!-- ** include targets that all plugins have in common ** --> |
32 | | - <import file="../build-common.xml"/> |
33 | | - |
34 | | - <fileset id="plugin.requires.jars" dir="${plugin.dist.dir}"> |
35 | | - <include name="jts.jar"/> |
36 | | - <include name="utilsplugin2.jar"/> |
37 | | - </fileset> |
38 | | - |
| 3 | + <!-- enter the SVN commit message --> |
| 4 | + <property name="commit.message" value="Conflation"/> |
| 5 | + <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> |
| 6 | + <property name="plugin.main.version" value="19044"/> |
| 7 | + <property name="plugin.author" value="Josh Doe"/> |
| 8 | + <property name="plugin.class" value="org.openstreetmap.josm.plugins.conflation.ConflationPlugin"/> |
| 9 | + <property name="plugin.description" value="Tool for conflating data (matching and merging)."/> |
| 10 | + <property name="plugin.icon" value="images/dialogs/conflation.png"/> |
| 11 | + <property name="plugin.link" value="https://wiki.openstreetmap.org/wiki/JOSM/Plugins/Conflation"/> |
| 12 | + <property name="plugin.requires" value="jts;utilsplugin2"/> |
| 13 | + <property name="plugin.canloadatruntime" value="true"/> |
| 14 | + <property name="version.entry.commit.revision" value="${plugin.version}"/> |
| 15 | + <target name="additional-manifest"> |
| 16 | + <manifest file="MANIFEST" mode="update"> |
| 17 | + <attribute name="11609_Plugin-Url" value="v0.5.5;https://github.com/JOSM/conflation/releases/download/v0.5.5/conflation.jar"/> |
| 18 | + <attribute name="12859_Plugin-Url" value="v0.5.6;https://github.com/JOSM/conflation/releases/download/v0.5.6/conflation.jar"/> |
| 19 | + <attribute name="13561_Plugin-Url" value="v0.5.7;https://github.com/JOSM/conflation/releases/download/v0.5.7/conflation.jar"/> |
| 20 | + <attribute name="13564_Plugin-Url" value="v0.6.0;https://github.com/JOSM/conflation/releases/download/v0.6.0/conflation.jar"/> |
| 21 | + <attribute name="14371_Plugin-Url" value="v0.6.5;https://github.com/JOSM/conflation/releases/download/v0.6.5/conflation.jar"/> |
| 22 | + <attribute name="16799_Plugin-Url" value="v0.6.6;https://github.com/JOSM/conflation/releases/download/v0.6.6/conflation.jar"/> |
| 23 | + <attribute name="18221_Plugin-Url" value="v0.6.11;https://github.com/JOSM/conflation/releases/download/v0.6.11/conflation.jar"/> |
| 24 | + </manifest> |
| 25 | + </target> |
| 26 | + <!-- ** include targets that all plugins have in common ** --> |
| 27 | + <import file="../build-common.xml"/> |
| 28 | + <fileset id="plugin.requires.jars" dir="${plugin.dist.dir}"> |
| 29 | + <include name="jts.jar"/> |
| 30 | + <include name="utilsplugin2.jar"/> |
| 31 | + </fileset> |
39 | 32 | </project> |
0 commit comments