forked from Gnonthgol/JOSM-continuos-download
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
49 lines (40 loc) · 1.91 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
40
41
42
43
44
45
46
47
48
49
<?xml version="1.0" encoding="utf-8"?>
<!--
** This is a template build file for a JOSM plugin.
**
** Maintaining versions
** ====================
** See README.template
**
** Usage
** =====
** Call "ant help" to get possible build targets.
**
-->
<project name="continuosDownload" default="dist" basedir=".">
<!-- enter the SVN commit message -->
<property name="commit.message" value="Commit message"/>
<!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
<property name="plugin.main.version" value="7636"/>
<!-- Configure these properties (replace "..." accordingly).
See http://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
-->
<property name="plugin.author" value="Gnonthgol"/>
<property name="plugin.class" value="org.openstreetmap.josm.plugins.continuosDownload.DownloadPlugin"/>
<property name="plugin.description" value="Downloads new data when you pan/zoom"/>
<property name="plugin.icon" value="images/continous-download.png"/>
<!-- <property name="plugin.link" value="..."/>-->
<!--<property name="plugin.early" value="..."/>-->
<!--<property name="plugin.requires" value="..."/>-->
<!--<property name="plugin.stage" value="..."/>-->
<property name="josm" location="../../core/dist/josm-custom.jar"/>
<property name="plugin.dist.dir" value="../../dist"/>
<target name="additional-manifest">
<manifest file="MANIFEST" mode="update">
<attribute name="7588_Plugin-Url" value="https://github.com/Gnonthgol/JOSM-continuos-download/releases/download/v1.1.01/continuosDownload.jar" />
<attribute name="7636_Plugin-Url" value="https://github.com/Gnonthgol/JOSM-continuos-download/releases/download/v1.1.02/continuosDownload.jar" />
</manifest>
</target>
<!-- ** include targets that all plugins have in common ** -->
<import file="../build-common.xml"/>
</project>