source: osm/applications/editors/josm/plugins/splinex/build.xml@ 31227

Last change on this file since 31227 was 31130, checked in by upliner, 10 years ago

Add splinex plugin from GitHub

File size: 1.3 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="splinex" default="dist" basedir=".">
15
16 <!-- enter the SVN commit message -->
17 <property name="commit.message" value="Commit message"/>
18 <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
19 <property name="plugin.main.version" value="7001"/>
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="Upliner"/>
28 <property name="plugin.class" value="org.openstreetmap.josm.plugins.Splinex.SplinexPlugin"/>
29 <property name="plugin.description" value="Allows to draw splines"/>
30 <property name="plugin.icon" value="images/mapmode/spline2.png"/>
31
32 <!-- <property name="plugin.link" value="..."/>-->
33 <!--<property name="plugin.early" value="..."/>-->
34 <!--<property name="plugin.requires" value="..."/>-->
35 <!--<property name="plugin.stage" value="..."/>-->
36
37 <!-- ** include targets that all plugins have in common ** -->
38 <import file="../build-common.xml"/>
39
40</project>
Note: See TracBrowser for help on using the repository browser.