source: osm/applications/editors/josm/plugins/smed/build.xml@ 29438

Last change on this file since 29438 was 29438, checked in by stoecker, 12 years ago

fix build file again

  • Property svn:mime-type set to text/xml
File size: 1.3 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3** This is a template build file for a JOSM plugin.
4**
5** Maintaining versions
6** ====================
7** See README.template
8**
9** Usage
10** =====
11** Call "ant help" to get possible build targets.
12**
13-->
14<project name="SeaMapEditor" default="dist" basedir=".">
15 <!-- enter the SVN commit message -->
16 <property name="commit.message" value="New release"/>
17 <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
18 <property name="plugin.main.version" value="4394"/>
19 <!-- should not be necessary to change the following properties -->
20
21 <property name="plugin.author" value="Werner, Malcolm"/>
22 <property name="plugin.class" value="smed.Smed"/>
23 <property name="plugin.description" value="Create and edit seamaps for OpenSeaMap"/>
24 <property name="plugin.icon" value="images/Smed.png"/>
25 <property name="plugin.link" value="http://openseamap.org/"/>
26
27 <!-- ** include targets that all plugins have in common ** -->
28 <import file="../build-common.xml"/>
29
30 <target name="setup-dist">
31 <antcall target="setup-dist-default" />
32 <copy todir="${plugin.build.dir}/smed/msg">
33 <fileset dir="${plugin.src.dir}/smed/msg"/>
34 </copy>
35 </target>
36
37</project>
Note: See TracBrowser for help on using the repository browser.