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