source: osm/applications/editors/josm/plugins/FixAddresses/build.xml@ 26345

Last change on this file since 26345 was 26299, checked in by stoecker, 13 years ago

i18n update, update to josm core cleanup

  • Property svn:eol-style set to native
  • Property svn:keywords set to Date Author Id Date Revision
  • Property svn:mime-type set to text/xml
File size: 5.8 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** To build it run
12**
13** > ant dist
14**
15** To install the generated plugin locally (in you default plugin directory) run
16**
17** > ant install
18**
19** The generated plugin jar is not automatically available in JOSMs plugin configuration
20** dialog. You have to check it in first.
21**
22-->
23<project name="FixAddresses" default="dist" basedir=".">
24 <!--
25 ************************************************
26 ** should not be necessary to change the following properties
27 -->
28 <property name="josm" location="../../core/dist/josm-custom.jar"/>
29 <property name="josm_3529" location="../../core/dist/3529/josm-tested.jar"/>
30 <property name="plugin.build.dir" value="build"/>
31 <property name="plugin.src.dir" value="src"/>
32 <!-- this is the directory where the plugin jar is copied to -->
33 <property name="plugin.dist.dir" value="../../dist"/>
34 <property name="ant.build.javac.target" value="1.5"/>
35 <property name="plugin.jar" value="${plugin.dist.dir}/${ant.project.name}.jar"/>
36 <!--
37 **********************************************************
38 ** init - initializes the build
39 **********************************************************
40 -->
41 <target name="init">
42 <mkdir dir="${plugin.build.dir}"/>
43 </target>
44 <!--
45 **********************************************************
46 ** compile - complies the source tree
47 **********************************************************
48 -->
49 <target name="compile" depends="init">
50 <echo message="compiling sources for ${plugin.jar} ... "/>
51 <javac srcdir="src" classpath="${josm}" debug="true" destdir="${plugin.build.dir}">
52 <compilerarg value="-Xlint:deprecation"/>
53 <compilerarg value="-Xlint:unchecked"/>
54 </javac>
55 </target>
56 <!--
57 **********************************************************
58 ** dist - creates the plugin jar
59 **********************************************************
60 -->
61 <target name="dist" depends="compile,revision">
62 <mkdir dir="${plugin.dist.dir}"/>
63 <echo message="creating ${plugin.jar} ... "/>
64 <copy todir="${plugin.build.dir}/resources">
65 <fileset dir="resources"/>
66 </copy>
67 <copy todir="${plugin.build.dir}/images">
68 <fileset dir="images"/>
69 </copy>
70 <copy todir="${plugin.build.dir}/data">
71 <fileset dir="data"/>
72 </copy>
73 <copy todir="${plugin.build.dir}">
74 <fileset dir=".">
75 <include name="README"/>
76 <include name="GPL-v2.0.txt"/>
77 <include name="GPL-v3.0.txt"/>
78 </fileset>
79 </copy>
80 <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}">
81 <!--
82 ************************************************
83 ** configure these properties. Most of them will be copied to the plugins
84 ** manifest file. Property values will also show up in the list available
85 ** plugins: http://josm.openstreetmap.de/wiki/Plugins.
86 **
87 ************************************************
88 -->
89 <manifest>
90 <attribute name="Author" value="Oliver Wieland"/>
91 <attribute name="Plugin-Class" value="org.openstreetmap.josm.plugins.fixAddresses.FixAddressesPlugin"/>
92 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
93 <attribute name="Plugin-Description" value="Finds and fixes invalid street addresses in a comfortable way."/>
94 <attribute name="de_Plugin-Description" value="Findet ungültige Addressen und bietet Unterstützung zur deren Korrektur."/>
95 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/FixAddresses"/>
96 <attribute name="Plugin-Mainversion" value="4223"/>
97 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
98 <attribute name="Plugin-Icon" value="images/fixaddresses.png"/>
99 </manifest>
100 </jar>
101 </target>
102 <!--
103 **********************************************************
104 ** revision - extracts the current revision number for the
105 ** file build.number and stores it in the XML property
106 ** version.*
107 **********************************************************
108 -->
109 <target name="revision">
110 <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false">
111 <env key="LANG" value="C"/>
112 <arg value="info"/>
113 <arg value="--xml"/>
114 <arg value="."/>
115 </exec>
116 <xmlproperty file="REVISION" prefix="version" keepRoot="false" collapseAttributes="true"/>
117 <echo message="Revision: ${version.entry.commit.revision}"/>
118 <delete file="REVISION"/>
119 </target>
120 <!--
121 **********************************************************
122 ** clean - clean up the build environment
123 **********************************************************
124 -->
125 <target name="clean">
126 <delete dir="${plugin.build.dir}"/>
127 <delete file="${plugin.jar}"/>
128 </target>
129 <!--
130 **********************************************************
131 ** install - install the plugin in your local JOSM installation
132 **********************************************************
133 -->
134 <target name="install" depends="dist">
135 <property environment="env"/>
136 <condition property="josm.plugins.dir" value="${env.APPDATA}/JOSM/plugins" else="${user.home}/.josm/plugins">
137 <and>
138 <os family="windows"/>
139 </and>
140 </condition>
141 <copy file="${plugin.jar}" todir="${josm.plugins.dir}"/>
142 </target>
143</project>
Note: See TracBrowser for help on using the repository browser.