source: osm/applications/editors/josm/plugins/mirrored_download/build.xml@ 31287

Last change on this file since 31287 was 31287, checked in by simon04, 10 years ago

fix #josm10897 - JOSM/mirrored_download: Disable and pre-set source checkboxes (patch by bastiK)

  • Property svn:mime-type set to text/xml
File size: 1.1 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<project name="mirrored_download" default="dist" basedir=".">
3
4 <!-- enter the SVN commit message -->
5 <property name="commit.message" value=""/>
6 <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
7 <property name="plugin.main.version" value="7722"/>
8
9 <!-- Configure these properties (replace "..." accordingly).
10 See http://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
11 -->
12 <property name="plugin.author" value="Roland M. Olbricht"/>
13 <property name="plugin.class" value="mirrored_download.MirroredDownloadPlugin"/>
14 <property name="plugin.description" value="Simplifies download from different read-only APIs."/>
15 <property name="plugin.icon" value="images/download_mirror.png"/>
16 <property name="plugin.link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/mirrored_download"/>
17 <property name="plugin.canloadatruntime" value="true"/>
18
19 <!-- ** include targets that all plugins have in common ** -->
20 <import file="../build-common.xml"/>
21
22</project>
Note: See TracBrowser for help on using the repository browser.