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