source: osm/applications/editors/josm/plugins/undelete/build.xml@ 36354

Last change on this file since 36354 was 36349, checked in by taylor.smock, 2 months ago

Dependency updates

Most plugins have been moved to require a minimum version of r19044 (mostly for
Java 11+ build reasons).

  • Property svn:mime-type set to text/xml
File size: 891 bytes
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<project name="undelete" default="dist" basedir=".">
3 <!-- enter the SVN commit message -->
4 <property name="commit.message" value="adapt to core changes (backwards compatible)"/>
5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
6 <property name="plugin.main.version" value="19044"/>
7
8 <property name="plugin.author" value="Nakor"/>
9 <property name="plugin.class" value="org.openstreetmap.josm.plugins.undelete.Undelete"/>
10 <property name="plugin.description" value="Allows undeleting object from OSM database"/>
11 <property name="plugin.icon" value="images/undelete.svg"/>
12 <property name="plugin.link" value="https://wiki.openstreetmap.org/wiki/JOSM/Plugins/Undelete"/>
13
14 <!-- ** include targets that all plugins have in common ** -->
15 <import file="../build-common.xml"/>
16
17</project>
Note: See TracBrowser for help on using the repository browser.