Last change
on this file since 32592 was 32480, checked in by donvip, 9 years ago |
remove calls to deprecated methods
|
-
Property svn:mime-type
set to
text/xml
|
File size:
1.6 KB
|
Rev | Line | |
---|
[28160] | 1 | <?xml version="1.0" encoding="utf-8"?>
|
---|
| 2 | <project name="sds" default="dist" basedir=".">
|
---|
[28291] | 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 -->
|
---|
[32480] | 7 | <property name="plugin.main.version" value="10353"/>
|
---|
[28291] | 8 |
|
---|
[28160] | 9 | <!--
|
---|
[28291] | 10 | **********************************************************
|
---|
| 11 | ** include targets that all plugins have in common
|
---|
| 12 | **********************************************************
|
---|
[28160] | 13 | -->
|
---|
[28291] | 14 | <import file="../build-common.xml"/>
|
---|
| 15 |
|
---|
[28160] | 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>
|
---|
[31768] | 23 | <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}" manifestencoding="UTF-8">
|
---|
[28160] | 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.