source: osm/applications/editors/josm/plugins/walkingpapers/build.xml@ 29744

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

fix typo

  • Property svn:mime-type set to text/xml
File size: 1.2 KB
RevLine 
[26174]1<?xml version="1.0" encoding="utf-8"?>
[19074]2<!--
[29442]3** This is a template build file for a JOSM plugin.
[19074]4**
[29442]5** Maintaining versions
6** ====================
7** See README.template
8**
[19074]9** Usage
10** =====
[29442]11** Call "ant help" to get possible build targets.
[19074]12**
13-->
[16522]14<project name="walkingpapers" default="dist" basedir=".">
[29442]15
16 <!-- enter the SVN commit message -->
[26174]17 <property name="commit.message" value="Changed the constructor signature of the plugin main class"/>
[29442]18 <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
[27019]19 <property name="plugin.main.version" value="4549"/>
[19074]20
[29442]21 <property name="plugin.author" value="Frederik Ram"/>
22 <property name="plugin.class" value="org.openstreetmap.josm.plugins.walkingpapers.WalkingPapersPlugin"/>
23 <property name="plugin.description" value="Supports downloading tiled, scanned maps from walking-papers.org. This plugin is still under early development and may be buggy."/>
[29480]24 <property name="plugin.icon" value="images/preferences/walkingpapers.png"/>
[29442]25 <property name="plugin.link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/WalkingPapers"/>
26
27 <!-- ** include targets that all plugins have in common ** -->
28 <import file="../build-common.xml"/>
29
[16522]30</project>
Note: See TracBrowser for help on using the repository browser.