source: osm/applications/editors/josm/plugins/utilsplugin2/build.xml@ 29351

Last change on this file since 29351 was 29351, checked in by stoecker, 11 years ago

fix deprecations, cleanup some more build.xml's

File size: 1.1 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** Call "ant help" to get possible build targets.
12**
13-->
14<project name="utilsplugin2" default="dist" basedir=".">
15
16 <!-- enter the SVN commit message -->
17 <property name="commit.message" value="Utilsplugin2: validation for pasting tags"/>
18 <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
19 <property name="plugin.main.version" value="4980"/>
20
21 <property name="plugin.author" value="Kalle Lampila, Upliner, and others"/>
22 <property name="plugin.class" value="org.openstreetmap.josm.plugins.utilsplugin2.UtilsPlugin2"/>
23 <property name="plugin.description" value="Several utilities that make your life easier."/>
24 <property name="plugin.icon" value="images/utils.png"/>
25 <property name="plugin.link" value="http://josm.openstreetmap.de/wiki/Help/Plugin/UtilsPlugin2"/>
26
27 <!-- ** include targets that all plugins have in common ** -->
28 <import file="../build-common.xml"/>
29
30</project>
Note: See TracBrowser for help on using the repository browser.