-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.xml
36 lines (32 loc) · 1.93 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
<?xml version="1.0" encoding="utf-8"?>
<project name="kartverketimport" default="dist" basedir=".">
<!-- enter the SVN commit message -->
<property name="commit.message" value="Initial"/>
<!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
<property name="plugin.main.version" value="14628"/>
<property name="plugin.canloadatruntime" value="true"/>
<!-- Configure these properties (replace "..." accordingly).
See https://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
-->
<property name="plugin.author" value="Torstein Ingebrigtsen Bø"/>
<property name="plugin.class" value="org.openstreetmap.josm.plugins.kartverket.KartverketPlugin"/>
<property name="plugin.description" value="Tools to help import Kartverket N50"/>
<property name="plugin.link" value="https://github.com/JOSM/kartverketimport"/>
<!--<<property name="plugin.icon" value="..."/>-->
<!--<property name="plugin.link" value="..."/>-->
<!--<property name="plugin.early" value="..."/>-->
<property name="plugin.requires" value="utilsplugin2"/>
<!--<property name="plugin.stage" value="..."/>-->
<target name="additional-manifest">
<manifest file="MANIFEST" mode="update">
<attribute name="12643_Plugin-Url" value="v1.0;https://github.com/JOSM/kartverketimport/releases/download/v1.0/kartverketimport.jar" />
<attribute name="14153_Plugin-Url" value="v1.0.1;https://github.com/JOSM/kartverketimport/releases/download/v1.0.1/kartverketimport.jar" />
<attribute name="14628_Plugin-Url" value="v1.0.3;https://github.com/JOSM/kartverketimport/releases/download/v1.0.3/kartverketimport.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="utilsplugin2.jar"/>
</fileset>
</project>