source: osm/applications/editors/josm/plugins/sds/build.xml@ 33589

Last change on this file since 33589 was 33589, checked in by donvip, 7 years ago

update to JOSM 12810

  • 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="sds" 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="12810"/>
8
9 <!--
10 **********************************************************
11 ** include targets that all plugins have in common
12 **********************************************************
13 -->
14 <import file="../build-common.xml"/>
15
16 <target name="dist" depends="compile,revision">
17 <copy todir="${plugin.build.dir}/images">
18 <fileset dir="images"/>
19 </copy>
20 <copy todir="${plugin.build.dir}/data">
21 <fileset dir="data"/>
22 </copy>
23 <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}" manifestencoding="UTF-8">
24 <manifest>
25 <attribute name="Author" value="Frederik Ramm"/>
26 <attribute name="Plugin-Class" value="org.openstreetmap.hot.sds.SeparateDataStorePlugin"/>
27 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
28 <attribute name="Plugin-Description" value="Loads data from SDS" />
29 <attribute name="Plugin-Icon" value="images/sds.png"/>
30 <!--<attribute name="Plugin-Link" value=""/>-->
31 <attribute name="Plugin-Mainversion" value="${plugin.main.version}"/>
32 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
33 </manifest>
34 </jar>
35 </target>
36</project>
Note: See TracBrowser for help on using the repository browser.