1 | <!--
|
---|
2 | ** This is the build file for the wmsplugin
|
---|
3 | **
|
---|
4 | ** Maintaining versions
|
---|
5 | ** ====================
|
---|
6 | ** see README.template
|
---|
7 | **
|
---|
8 | ** Usage
|
---|
9 | ** =====
|
---|
10 | ** To build it run
|
---|
11 | **
|
---|
12 | ** > ant dist
|
---|
13 | **
|
---|
14 | ** To install the generated plugin locally (in your default plugin directory) run
|
---|
15 | **
|
---|
16 | ** > ant install
|
---|
17 | **
|
---|
18 | ** To build against the core in ../../core, create a correct manifest and deploy to
|
---|
19 | ** SVN, run
|
---|
20 | ** - set the property commit.message
|
---|
21 | ** - set the property plugin.main.version to lowest JOSM release number this
|
---|
22 | ** plugin build is compatible with
|
---|
23 | ** > ant deploy
|
---|
24 | **
|
---|
25 | **
|
---|
26 | -->
|
---|
27 | <project name="wmsplugin" default="dist" basedir=".">
|
---|
28 |
|
---|
29 |
|
---|
30 | <property name="commit.message" value="add commit message" />
|
---|
31 | <property name="plugin.main.version" value="3451" />
|
---|
32 |
|
---|
33 |
|
---|
34 | <property name="josm" location="../../core/dist/josm-custom.jar" />
|
---|
35 | <property name="remotecontrol" location="../../dist/remotecontrol.jar" />
|
---|
36 | <property name="plugin.dist.dir" value="../../dist" />
|
---|
37 | <property name="plugin.build.dir" value="build" />
|
---|
38 | <property name="plugin.jar" value="${plugin.dist.dir}/${ant.project.name}.jar" />
|
---|
39 | <property name="ant.build.javac.target" value="1.5" />
|
---|
40 |
|
---|
41 | <target name="init">
|
---|
42 | <mkdir dir="${plugin.build.dir}" />
|
---|
43 | </target>
|
---|
44 | <target name="compile" depends="init">
|
---|
45 | <echo message="creating ${plugin.jar}" />
|
---|
46 | <javac srcdir="src" classpath="${josm};${remotecontrol}" debug="true" destdir="${plugin.build.dir}">
|
---|
47 | <compilerarg value="-Xlint:deprecation" />
|
---|
48 | <compilerarg value="-Xlint:unchecked" />
|
---|
49 | </javac>
|
---|
50 | </target>
|
---|
51 | <target name="dist" depends="compile,revision">
|
---|
52 | <echo message="building ${plugin.jar} with version ${version.entry.commit.revision} for JOSM version ${josm.reference.release} " />
|
---|
53 | <copy todir="${plugin.build.dir}/images">
|
---|
54 | <fileset dir="images" />
|
---|
55 | </copy>
|
---|
56 | <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}">
|
---|
57 | <manifest>
|
---|
58 | <attribute name="Author" value="Tim Waters, Petr Dlouhý" />
|
---|
59 | <attribute name="Plugin-Class" value="wmsplugin.WMSPlugin" />
|
---|
60 | <attribute name="Plugin-Date" value="${version.entry.commit.date}" />
|
---|
61 | <attribute name="Plugin-Description" value="Display georeferenced images as background in JOSM (WMS servers, Yahoo, ...)." />
|
---|
62 | <attribute name="Plugin-Icon" value="images/wms.png"/>
|
---|
63 | <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/WMSPlugin" />
|
---|
64 | <attribute name="Plugin-Mainversion" value="${plugin.main.version}" />
|
---|
65 | <attribute name="Plugin-Version" value="${version.entry.commit.revision}" />
|
---|
66 | <attribute name="de_Plugin-Link" value="http://wiki.openstreetmap.org/wiki/DE:JOSM/Plugins/WMSPlugin" />
|
---|
67 | <attribute name="ja_Plugin-Link" value="http://wiki.openstreetmap.org/wiki/Ja:JOSM/Plugins/WMSPlugin?uselang=ja" />
|
---|
68 | </manifest>
|
---|
69 | </jar>
|
---|
70 | </target>
|
---|
71 | <target name="revision">
|
---|
72 | <exec append="false" output="REVISION" executable="svn" failifexecutionfails="true" failonerror="true">
|
---|
73 | <env key="LANG" value="C" />
|
---|
74 | <arg value="info" />
|
---|
75 | <arg value="--xml" />
|
---|
76 | <arg value="." />
|
---|
77 | </exec>
|
---|
78 | <xmlproperty file="REVISION" prefix="version" keepRoot="false" collapseAttributes="true" />
|
---|
79 | <delete file="REVISION" />
|
---|
80 | </target>
|
---|
81 | <target name="clean">
|
---|
82 | <delete dir="${plugin.build.dir}" />
|
---|
83 | <delete file="${plugin.jar}" />
|
---|
84 | </target>
|
---|
85 | <target name="install" depends="dist">
|
---|
86 | <property environment="env" />
|
---|
87 | <condition property="josm.plugins.dir" value="${env.APPDATA}/JOSM/plugins" else="${user.home}/.josm/plugins">
|
---|
88 | <and>
|
---|
89 | <os family="windows" />
|
---|
90 | </and>
|
---|
91 | </condition>
|
---|
92 | <copy file="${plugin.jar}" todir="${josm.plugins.dir}" />
|
---|
93 | </target>
|
---|
94 |
|
---|
95 | <!--
|
---|
96 | ************************** Publishing the plugin ***********************************
|
---|
97 | -->
|
---|
98 | <!--
|
---|
99 | ** extracts the JOSM release for the JOSM version in ../core and saves it in the
|
---|
100 | ** property ${coreversion.info.entry.revision}
|
---|
101 | **
|
---|
102 | -->
|
---|
103 | <target name="core-info">
|
---|
104 | <exec append="false" output="core.info.xml" executable="svn" failifexecutionfails="false">
|
---|
105 | <env key="LANG" value="C" />
|
---|
106 | <arg value="info" />
|
---|
107 | <arg value="--xml" />
|
---|
108 | <arg value="../../core" />
|
---|
109 | </exec>
|
---|
110 | <xmlproperty file="core.info.xml" prefix="coreversion" keepRoot="true" collapseAttributes="true" />
|
---|
111 | <echo>Building against core revision ${coreversion.info.entry.revision}.</echo>
|
---|
112 | <echo>Plugin-Mainversion is set to ${plugin.main.version}.</echo>
|
---|
113 | <delete file="core.info.xml" />
|
---|
114 | </target>
|
---|
115 |
|
---|
116 | <!--
|
---|
117 | ** commits the source tree for this plugin
|
---|
118 | -->
|
---|
119 | <target name="commit-current">
|
---|
120 | <echo>Commiting the plugin source with message '${commit.message}' ...</echo>
|
---|
121 | <exec append="true" output="svn.log" executable="svn" failifexecutionfails="true" failonerror="true">
|
---|
122 | <env key="LANG" value="C" />
|
---|
123 | <arg value="commit" />
|
---|
124 | <arg value="-m '${commit.message}'" />
|
---|
125 | <arg value="." />
|
---|
126 | </exec>
|
---|
127 | </target>
|
---|
128 |
|
---|
129 | <!--
|
---|
130 | ** updates (svn up) the source tree for this plugin
|
---|
131 | -->
|
---|
132 | <target name="update-current">
|
---|
133 | <echo>Updating plugin source ...</echo>
|
---|
134 | <exec append="true" output="svn.log" executable="svn" failifexecutionfails="true" failonerror="true">
|
---|
135 | <env key="LANG" value="C" />
|
---|
136 | <arg value="up" />
|
---|
137 | <arg value="." />
|
---|
138 | </exec>
|
---|
139 | <echo>Updating ${plugin.jar} ...</echo>
|
---|
140 | <exec append="true" output="svn.log" executable="svn" failifexecutionfails="true" failonerror="true">
|
---|
141 | <env key="LANG" value="C" />
|
---|
142 | <arg value="up" />
|
---|
143 | <arg value="../dist/${plugin.jar}" />
|
---|
144 | </exec>
|
---|
145 | </target>
|
---|
146 |
|
---|
147 | <!--
|
---|
148 | ** commits the plugin.jar
|
---|
149 | -->
|
---|
150 | <target name="commit-dist">
|
---|
151 | <echo>
|
---|
152 | ***** Properties of published ${plugin.jar} *****
|
---|
153 | Commit message : '${commit.message}'
|
---|
154 | Plugin-Mainversion: ${plugin.main.version}
|
---|
155 | JOSM build version: ${coreversion.info.entry.revision}
|
---|
156 | Plugin-Version : ${version.entry.commit.revision}
|
---|
157 | ***** / Properties of published ${plugin.jar} *****
|
---|
158 |
|
---|
159 | Now commiting ${plugin.jar} ...
|
---|
160 | </echo>
|
---|
161 | <exec append="true" output="svn.log" executable="svn" failifexecutionfails="true" failonerror="true">
|
---|
162 | <env key="LANG" value="C" />
|
---|
163 | <arg value="-m '${commit.message}'" />
|
---|
164 | <arg value="commit" />
|
---|
165 | <arg value="${plugin.jar}" />
|
---|
166 | </exec>
|
---|
167 | </target>
|
---|
168 |
|
---|
169 |
|
---|
170 | <!-- ** make sure svn is present as a command line tool ** -->
|
---|
171 | <target name="ensure-svn-present">
|
---|
172 | <exec append="true" output="svn.log" executable="svn" failonerror="false" resultproperty="svn.exit.code">
|
---|
173 | <env key="LANG" value="C" />
|
---|
174 | <arg value="--version" />
|
---|
175 | </exec>
|
---|
176 | <fail message="Fatal: command 'svn' not found. Please make sure svn is installed on your system.">
|
---|
177 | <condition>
|
---|
178 | <isfailure code="${svn.exit.code}" />
|
---|
179 | </condition>
|
---|
180 | </fail>
|
---|
181 | </target>
|
---|
182 |
|
---|
183 | <target name="publish" depends="ensure-svn-present,core-info,commit-current,update-current,clean,dist,commit-dist">
|
---|
184 | </target>
|
---|
185 | </project>
|
---|