source: osm/applications/editors/josm/plugins/addrinterpolation/build.xml@ 29839

Last change on this file since 29839 was 29778, checked in by akks, 12 years ago

[josm_plugins]: see #josm6355 - Move most of the other plugins to suitable menus, add Netbeans projects

  • Property svn:mime-type set to text/xml
File size: 1.6 KB
Line 
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** To build it run
12**
13** > ant dist
14**
15** To install the generated plugin locally (in you default plugin directory) run
16**
17** > ant install
18**
19** The generated plugin jar is not automatically available in JOSMs plugin configuration
20** dialog. You have to check it in first.
21**
22-->
23<project name="AddrInterpolation" default="dist" basedir=".">
24 <!-- enter the SVN commit message -->
25 <property name="commit.message" value="Impoved Icon"/>
26 <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
27 <property name="plugin.main.version" value="6082"/>
28
29 <!-- Configure these properties (replace "..." accordingly).
30 See http://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
31 -->
32 <property name="plugin.author" value="Mike Nice"/>
33 <property name="plugin.class" value="org.openstreetmap.josm.plugins.AddrInterpolation.AddrInterpolationPlugin"/>
34 <property name="plugin.description" value="Group common Address Interpolation inputs in a single dialog, as well as an option to automatically generate individual house number nodes from a Way."/>
35 <property name="plugin.icon" value="images/AddrInterpolation.png"/>
36 <property name="plugin.link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/AddrInterpolation"/>
37
38 <!-- ** include targets that all plugins have in common ** -->
39 <import file="../build-common.xml"/>
40</project>
Note: See TracBrowser for help on using the repository browser.