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

Last change on this file since 35096 was 34881, checked in by gerdp, 6 years ago

see #17279: improve performance: use new method HistoryLoadTask.setChangesetDataNeeded() to avoid all downloads of changesets when undeleting objects.
Needs JOSM r14763 or newer

  • 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="14763"/>
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.png"/>
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.