forked from fieldpapers/josm-fieldpapers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
18 lines (14 loc) · 1.02 KB
/
build.xml
File metadata and controls
18 lines (14 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="utf-8"?>
<project name="walkingpapers" default="dist" basedir=".">
<!-- enter the SVN commit message -->
<property name="commit.message" value="Changed the constructor signature of the plugin main class"/>
<!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
<property name="plugin.main.version" value="10580"/>
<property name="plugin.author" value="Frederik Ram"/>
<property name="plugin.class" value="org.openstreetmap.josm.plugins.walkingpapers.WalkingPapersPlugin"/>
<property name="plugin.description" value="Supports downloading tiled, scanned maps from walking-papers.org. This plugin is still under early development and may be buggy."/>
<property name="plugin.icon" value="images/preferences/walkingpapers.png"/>
<property name="plugin.link" value="https://wiki.openstreetmap.org/index.php/JOSM/Plugins/WalkingPapers"/>
<!-- ** include targets that all plugins have in common ** -->
<import file="../build-common.xml"/>
</project>