1 | <?xml version="1.0" encoding="utf-8"?>
|
---|
2 | <!--
|
---|
3 | ** This is a template build file for a JOSM plugin.
|
---|
4 | **
|
---|
5 | ** Maintaining versions
|
---|
6 | ** ====================
|
---|
7 | ** See README.template
|
---|
8 | **
|
---|
9 | ** Usage
|
---|
10 | ** =====
|
---|
11 | ** Call "ant help" to get possible build targets.
|
---|
12 | **
|
---|
13 | -->
|
---|
14 | <project name="Tracer2" default="dist" basedir=".">
|
---|
15 |
|
---|
16 | <!-- enter the SVN commit message -->
|
---|
17 | <property name="commit.message" value="Add link to wiki"/>
|
---|
18 | <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
|
---|
19 | <property name="plugin.main.version" value="6340"/>
|
---|
20 |
|
---|
21 | <!-- Configure these properties (replace "..." accordingly).
|
---|
22 |
|
---|
23 |
|
---|
24 |
|
---|
25 | See http://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
|
---|
26 | -->
|
---|
27 | <property name="plugin.author" value="Jan Bilak, Petr Dlouhý, Dirk Brünig"/>
|
---|
28 | <property name="plugin.class" value="org.openstreetmap.josm.plugins.tracer2.TracerPlugin"/>
|
---|
29 | <property name="plugin.description" value="Traces buildings and other shapes from a map. Needs Tracer2Server to be running."/>
|
---|
30 | <property name="plugin.icon" value="images/mapmode/tracer2-sml.png"/>
|
---|
31 | <property name="plugin.link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/Tracer2"/>
|
---|
32 | <!--<property name="plugin.early" value="..."/>-->
|
---|
33 | <!--<property name="plugin.requires" value="..."/>-->
|
---|
34 | <!--<property name="plugin.stage" value="..."/>-->
|
---|
35 |
|
---|
36 | <property name="josm" location="../../core/dist/josm-custom.jar"/>
|
---|
37 | <property name="plugin.dist.dir" value="../../dist"/>
|
---|
38 |
|
---|
39 | <!-- ** include targets that all plugins have in common ** -->
|
---|
40 | <import file="../build-common.xml"/>
|
---|
41 |
|
---|
42 | </project>
|
---|