source: osm/applications/editors/josm/plugins/mapdust/build.xml@ 35039

Last change on this file since 35039 was 35039, checked in by donvip, 5 years ago

see #josm17835 - fix plugin build files

  • Property svn:mime-type set to text/xml
File size: 1.6 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<project name="mapdust" default="dist" basedir=".">
3 <!-- properties -->
4 <property name="commit.message" value="MapDust bug reporter plugin"/>
5 <property name="plugin.main.version" value="14153"/>
6 <property name="apidoc.dir" value="doc"/>
7
8 <property name="plugin.author" value="Beata Jancso"/>
9 <property name="plugin.class" value="org.openstreetmap.josm.plugins.mapdust.MapdustPlugin"/>
10 <property name="plugin.description" value="The MapDust Plug-In shows the MapDust bug reports on the map. You can create, close,invalidate, re-open and comment bug reports by using this plugin."/>
11 <property name="plugin.icon" value="images/dialogs/mapdust_icon25.png"/>
12 <property name="plugin.link" value="https://wiki.openstreetmap.org/wiki/JOSM/Plugins/MapDust"/>
13 <property name="plugin.requires" value="gson"/>
14
15 <!--
16 **********************************************************
17 ** include targets that all plugins have in common
18 **********************************************************
19 -->
20 <import file="../build-common.xml"/>
21
22 <fileset id="plugin.requires.jars" dir="${plugin.dist.dir}">
23 <include name="gson.jar"/>
24 </fileset>
25
26 <target name="clean">
27 <delete dir="${plugin.build.dir}"/>
28 <delete dir="${apidoc.dir}"/>
29 <delete file="${plugin.jar}"/>
30 </target>
31
32 <target name="setup-dist">
33 <antcall target="setup-dist-default" />
34 <copy todir="${plugin.build.dir}">
35 <fileset dir="conf"/>
36 </copy>
37 </target>
38
39</project>
Note: See TracBrowser for help on using the repository browser.