-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.xml
27 lines (22 loc) · 1.4 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
<?xml version="1.0" encoding="utf-8"?>
<project name="pointInfo" default="dist" basedir=".">
<!-- enter the SVN commit message -->
<property name="commit.message" value="PointInfo: Fix yet another NPE issue with empty strings"/>
<!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
<property name="plugin.main.version" value="18723"/>
<!-- plugin can load at runtime -->
<property name="plugin.canloadatruntime" value="true"/>
<!-- Configure these properties (replace "..." accordingly).
See https://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
-->
<property name="plugin.author" value="Marián Kyral"/>
<property name="plugin.class" value="org.openstreetmap.josm.plugins.pointinfo.PointInfoPlugin"/>
<property name="plugin.description" value="Shows an additional information about point on map. Only Czech RUIAN and Spanish Cadastre Web Services modules are available at this moment."/>
<property name="plugin.icon" value="images/mapmode/pointinfo.svg"/>
<property name="plugin.link" value="https://github.com/mkyral/josm-pointInfo"/>
<!--<property name="plugin.early" value="..."/>-->
<!--<property name="plugin.requires" value="..."/>-->
<!--<property name="plugin.stage" value="..."/>-->
<!-- ** include targets that all plugins have in common ** -->
<import file="../build-common.xml"/>
</project>