source: osm/applications/editors/josm/plugins/CustomizePublicTransportStop/build.xml@ 34147

Last change on this file since 34147 was 34111, checked in by stoecker, 7 years ago

use standard build

File size: 2.2 KB
RevLine 
[32048]1<?xml version="1.0" encoding="UTF-8"?>
[34111]2<project name="CustomizePublicTransportStop" default="dist" basedir=".">
[32048]3
[34111]4 <!-- enter the SVN commit message -->
5 <property name="commit.message" value="Commit message"/>
6 <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
7 <property name="plugin.main.version" value="12840"/>
[32048]8
[34111]9 <!-- ** include targets that all plugins have in common ** -->
10 <import file="../build-common.xml"/>
[32048]11
[34111]12 <!-- creates the .jar file of the plugin -->
13 <target name="dist" depends="compile,revision">
14 <echo message="creating ${ant.project.name}.jar ... "/>
[32048]15 <copy todir="${plugin.build.dir}/images">
[34111]16 <fileset dir="images"/>
[32048]17 </copy>
18 <copy todir="${plugin.build.dir}/data">
[34111]19 <fileset dir="data"/>
[32048]20 </copy>
21 <copy todir="${plugin.build.dir}">
22 <fileset dir=".">
23 <include name="GPL-v3.0.txt" />
24 <include name="GPL-v2.0.txt" />
25 </fileset>
26 </copy>
[34111]27 <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}" manifestencoding="UTF-8">
[32048]28 <manifest>
[34111]29 <attribute name="Author" value="Rodion Scherbakov"/>
30 <attribute name="Plugin-Class" value="ru.rodsoft.openstreetmap.josm.plugins.customizepublictransportstop.CustomizePublicTransportStopPlugin"/>
31 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
32 <attribute name="Plugin-Description" value="Customization of public public transport stops."/>
33 <attribute name="Plugin-Link" value="https://wiki.openstreetmap.org/wiki/JOSM/Plugins/CustomizePublicTransportStop"/>
34 <attribute name="Plugin-Mainversion" value="${plugin.main.version}"/>
35 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
[32048]36 <attribute name="Plugin-Icon" value="images/bus.png"/>
[32562]37 <attribute name="ru_Plugin-Description" value="Настройка остановки общественного транспорта в соответствии со стандартом" />
[32048]38 </manifest>
[34111]39 </jar>
[32048]40 </target>
41
42</project>
Note: See TracBrowser for help on using the repository browser.