source: josm/trunk/build.xml@ 7077

Last change on this file since 7077 was 7068, checked in by Don-vip, 10 years ago

test cleanup

File size: 24.7 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<!-- ** build.xml - main ant file for JOSM
3**
4** To build run
5** ant clean
6** ant dist
7** This will create 'josm-custom.jar' in directory 'dist'. See also
8** https://josm.openstreetmap.de/wiki/CreateBuild
9**
10-->
11<project xmlns:as="antlib:org.codehaus.mojo.animal_sniffer" name="josm" default="dist" basedir="." xmlns:jacoco="antlib:org.jacoco.ant">
12 <property name="test.dir" location="test"/>
13 <property name="src.dir" location="src"/>
14 <property name="build.dir" location="build"/>
15 <property name="javacc.home" location="tools"/>
16 <property name="mapcss.dir" location="${src.dir}/org/openstreetmap/josm/gui/mappaint/mapcss"/>
17 <!-- build parameter: compression level (ant -Dclevel=N)
18 N ranges from 0 (no compression) to 9 (maximum compression)
19 default: 9 -->
20 <condition property="clevel" value="${clevel}" else="9">
21 <isset property="clevel"/>
22 </condition>
23 <!-- Java classpath addition (all jar files to compile tests with this) -->
24 <path id="classpath">
25 <fileset dir="lib">
26 <include name="**/*.jar"/>
27 </fileset>
28 </path>
29
30 <!--
31 ** Used by Eclipse ant builder for updating
32 ** the REVISION file used by JOSM
33 -->
34 <target name="create-revision-eclipse">
35 <property name="revision.dir" value="bin"/>
36 <antcall target="create-revision"/>
37 </target>
38 <!--
39 ** Initializes the REVISION.XML file from SVN information
40 -->
41 <target name="init-svn-revision-xml">
42 <exec append="false" output="REVISION.XML" executable="svn" failifexecutionfails="false" resultproperty="svn.info.result">
43 <env key="LANG" value="C"/>
44 <arg value="info"/>
45 <arg value="--xml"/>
46 <arg value="."/>
47 </exec>
48 <condition property="svn.info.success">
49 <equals arg1="${svn.info.result}" arg2="0" />
50 </condition>
51 </target>
52 <!--
53 ** Initializes the REVISION.XML file from git information
54 -->
55 <target name="init-git-revision-xml" unless="svn.info.success">
56 <exec append="false" output="REVISION.XML" executable="git" failifexecutionfails="false">
57 <arg value="log"/>
58 <arg value="-1"/>
59 <arg value="--grep=git-svn-id"/>
60 <!--
61 %B: raw body (unwrapped subject and body)
62 %n: new line
63 %ai: author date, ISO 8601 format
64 -->
65 <arg value="--pretty=format:%B%n%ai"/>
66 <arg value="HEAD"/>
67 </exec>
68 <replaceregexp file="REVISION.XML" flags="s"
69 match=".*git-svn-id: [^@]*@([0-9]+).*(\d{4}-\d{2}-\d{2}.\d{2}\:\d{2}\:\d{2}\s*[+-]\d{2}:?\d{2})\s*$"
70 replace="&lt;info&gt;&lt;entry&gt;&lt;commit revision=&quot;\1&quot;&gt;&lt;date&gt;\2&lt;/date&gt;&lt;/commit&gt;&lt;/entry&gt;&lt;/info&gt;"/>
71 </target>
72 <!--
73 ** Creates the REVISION file to be included in the distribution
74 -->
75 <target name="create-revision" depends="init-svn-revision-xml, init-git-revision-xml">
76 <property name="revision.dir" value="${build.dir}"/>
77 <xmlproperty file="REVISION.XML" prefix="version" keepRoot="false" collapseAttributes="true"/>
78 <delete file="REVISION.XML"/>
79 <tstamp>
80 <format property="build.tstamp" pattern="yyyy-MM-dd HH:mm:ss"/>
81 </tstamp>
82 <property name="version.entry.commit.revision" value="UNKNOWN"/>
83 <property name="version.entry.commit.date" value="UNKNOWN"/>
84 <mkdir dir="${revision.dir}"/>
85 <!-- add Build-Name: ... when making special builds, e.g. DEBIAN -->
86 <echo file="${revision.dir}/REVISION">
87# automatically generated by JOSM build.xml - do not edit
88Revision: ${version.entry.commit.revision}
89Is-Local-Build: true
90Build-Date: ${build.tstamp}
91</echo>
92 </target>
93 <!--
94 ** Check internal XML files against their XSD
95 -->
96 <target name="check-schemas">
97 <schemavalidate file="data/defaultpresets.xml" >
98 <schema namespace="http://josm.openstreetmap.de/tagging-preset-1.0" file="data/tagging-preset.xsd" />
99 </schemavalidate>
100 <schemavalidate file="styles/standard/elemstyles.xml" >
101 <schema namespace="http://josm.openstreetmap.de/mappaint-style-1.0" file="data/mappaint-style.xsd" />
102 </schemavalidate>
103 </target>
104 <!--
105 ** Main target that builds JOSM and checks XML against schemas
106 -->
107 <target name="dist" depends="compile,create-revision,check-schemas">
108 <echo>Revision ${version.entry.commit.revision}</echo>
109 <copy file="CONTRIBUTION" todir="build"/>
110 <copy file="README" todir="build"/>
111 <copy file="LICENSE" todir="build"/>
112 <!-- create josm-custom.jar -->
113 <delete file="dist/josm-custom.jar"/>
114 <jar destfile="dist/josm-custom.jar" basedir="build" level="${clevel}">
115 <!-- add attribute excludes="**/*BZip2*,**/*Bzip2*" to create a non-bzip2 supporting jar -->
116 <manifest>
117 <attribute name="Main-class" value="JOSM"/>
118 <attribute name="Main-Version" value="${version.entry.commit.revision} SVN"/>
119 <attribute name="Main-Date" value="${version.entry.commit.date}"/>
120 <attribute name="Permissions" value="all-permissions"/>
121 <attribute name="Codebase" value="josm.openstreetmap.de"/>
122 <attribute name="Application-Name" value="JOSM - Java OpenStreetMap Editor"/>
123 </manifest>
124 <zipfileset dir="images" prefix="images"/>
125 <zipfileset dir="data" prefix="data"/>
126 <zipfileset dir="styles" prefix="styles"/>
127 <zipfileset dir="src/org/openstreetmap/gui/jmapviewer/images" prefix="org/openstreetmap/gui/jmapviewer/images"/>
128 <!-- All jar files necessary to run only JOSM (no tests) -->
129 <!-- <zipfileset src="lib/metadata-extractor-2.3.1-nosun.jar"/> -->
130 <!-- <zipfileset src="lib/signpost-core-1.2.1.1.jar"/> -->
131 </jar>
132 </target>
133 <!-- Mac OS X target -->
134 <target name="mac">
135 <!-- Using https://bitbucket.org/infinitekind/appbundler to create mac application bundle -->
136 <taskdef name="bundleapp" classname="com.oracle.appbundler.AppBundlerTask" classpath="tools/appbundler-1.0ea.jar"/>
137 <!-- create MacOS X application bundle -->
138 <bundleapp outputdirectory="${bundle.outdir}" name="JOSM" displayname="JOSM" executablename="JOSM" identifier="org.openstreetmap.josm"
139 mainclassname="org.openstreetmap.josm.gui.MainApplication"
140 copyright="JOSM, and all its integral parts, are released under the GNU General Public License v2 or later"
141 applicationCategory="public.app-category.utilities"
142 shortversion="${version.entry.commit.revision} SVN"
143 version="${version.entry.commit.revision} SVN"
144 icon="macosx/JOSM.app/Contents/Resources/JOSM.icns"
145 highResolutionCapable="true">
146
147 <arch name="x86_64"/>
148 <arch name="i386"/>
149
150 <classpath file="${bundle.jar}"/>
151
152 <option value="-Xmx512m"/>
153
154 <option value="-Xdock:icon=Contents/Resources/JOSM.icns"/>
155 <option value="-Xdock:name=JOSM"/>
156
157 <!-- OSX specific options, optional -->
158 <option value="-Dapple.laf.useScreenMenuBar=true"/>
159 <option value="-Dcom.apple.macos.use-file-dialog-packages=true"/>
160 <option value="-Dcom.apple.macos.useScreenMenuBar=true"/>
161 <option value="-Dcom.apple.mrj.application.apple.menu.about.name=JOSM"/>
162 <option value="-Dcom.apple.smallTabs=true"/>
163 </bundleapp>
164
165 <!-- appbundler lacks the possibility of defining our own keys or using a template, so update the .plist manually -->
166 <taskdef name="xmltask" classname="com.oopsconsultancy.xmltask.ant.XmlTask" classpath="tools/xmltask.jar"/>
167
168 <xmltask source="${bundle.outdir}/JOSM.app/Contents/Info.plist" dest="${bundle.outdir}/JOSM.app/Contents/Info.plist" indent="false">
169 <insert position="before" path="/plist/dict/key[1]"><![CDATA[<key>CFBundleAllowMixedLocalizations</key>
170<string>true</string>
171]]></insert>
172 </xmltask>
173
174 <!-- create ZIP file with MacOS X application bundle -->
175 <zip destfile="${bundle.outdir}/josm-custom-macosx.zip" update="true">
176 <zipfileset dir="." includes="CONTRIBUTION README LICENSE"/>
177 <zipfileset dir="${bundle.outdir}" includes="JOSM.app/**/*" filemode="755" />
178 </zip>
179 </target>
180 <target name="distmac" depends="dist">
181 <antcall target="mac">
182 <param name="bundle.outdir" value="dist"/>
183 <param name="bundle.jar" value="dist/josm-custom.jar"/>
184 </antcall>
185 </target>
186 <target name="javacc" depends="init" unless="javacc.notRequired">
187 <mkdir dir="${mapcss.dir}/parsergen"/>
188 <exec append="false" executable="java" failifexecutionfails="true">
189 <arg value="-cp"/>
190 <arg value="${javacc.home}/javacc.jar"/>
191 <arg value="javacc"/>
192 <arg value="-DEBUG_PARSER=false"/>
193 <arg value="-DEBUG_TOKEN_MANAGER=false"/>
194 <arg value="-JDK_VERSION=1.7"/>
195 <arg value="-GRAMMAR_ENCODING=UTF-8"/>
196 <arg value="-OUTPUT_DIRECTORY=${mapcss.dir}/parsergen"/>
197 <arg value="${mapcss.dir}/MapCSSParser.jj"/>
198 </exec>
199 </target>
200 <target name="compile" depends="init,javacc">
201 <!-- COTS -->
202 <javac srcdir="src" includes="com/**,oauth/**,org/apache/commons/codec/**,org/glassfish/**" nowarn="on"
203 destdir="build" target="1.7" source="1.7" debug="on" includeantruntime="false" createMissingPackageInfoClass="false" encoding="iso-8859-1">
204 <!-- get rid of "internal proprietary API" warning -->
205 <compilerarg value="-XDignore.symbol.file"/>
206 </javac>
207 <!-- JMapViewer/JOSM -->
208 <javac srcdir="src" excludes="com/**,oauth/**,org/apache/commons/codec/**,org/glassfish/**,org/openstreetmap/gui/jmapviewer/Demo.java"
209 destdir="build" target="1.7" source="1.7" debug="on" includeantruntime="false" createMissingPackageInfoClass="false" encoding="UTF-8">
210 <compilerarg value="-Xlint:cast"/>
211 <compilerarg value="-Xlint:deprecation"/>
212 <compilerarg value="-Xlint:dep-ann"/>
213 <compilerarg value="-Xlint:divzero"/>
214 <compilerarg value="-Xlint:empty"/>
215 <compilerarg value="-Xlint:finally"/>
216 <compilerarg value="-Xlint:overrides"/>
217 <!--<compilerarg value="-Xlint:rawtypes"/>-->
218 <compilerarg value="-Xlint:static"/>
219 <compilerarg value="-Xlint:try"/>
220 <compilerarg value="-Xlint:unchecked"/>
221 </javac>
222 <copy todir="build" failonerror="no" includeemptydirs="no">
223 <fileset dir="resources"/>
224 </copy>
225 </target>
226 <target name="init">
227 <uptodate property="javacc.notRequired" targetfile="${mapcss.dir}/parsergen/MapCSSParser.java" >
228 <srcfiles dir="${mapcss.dir}" includes="MapCSSParser.jj"/>
229 </uptodate>
230 <mkdir dir="build"/>
231 <mkdir dir="dist"/>
232 </target>
233 <target name="javadoc">
234 <javadoc destdir="javadoc"
235 sourcepath="src"
236 encoding="UTF-8"
237 packagenames="org.openstreetmap.josm.*,org.openstreetmap.gui.jmapviewer.*"
238 windowtitle="JOSM"
239 use="true"
240 private="true"
241 linksource="true"
242 author="false">
243 <link href="http://docs.oracle.com/javase/7/docs/api"/>
244 <doctitle><![CDATA[<h2>JOSM - Javadoc</h2>]]></doctitle>
245 <bottom><![CDATA[<a href="https://josm.openstreetmap.de/">JOSM</a>]]></bottom>
246 </javadoc>
247 </target>
248 <target name="clean">
249 <delete dir="build"/>
250 <delete dir="dist"/>
251 <delete dir="${mapcss.dir}/parsergen"/>
252 </target>
253 <path id="test.classpath">
254 <fileset dir="${test.dir}/lib">
255 <include name="**/*.jar"/>
256 </fileset>
257 <fileset dir="lib">
258 <include name="**/*.jar"/>
259 </fileset>
260 <pathelement path="dist/josm-custom.jar"/>
261 <pathelement path="tools/groovy-all-2.2.2.jar"/>
262 </path>
263 <macrodef name="init-test-preferences">
264 <attribute name="testfamily"/>
265 <sequential>
266 <copy file="${test.dir}/config/preferences.template.xml" tofile="${test.dir}/config/@{testfamily}-josm.home/preferences.xml"/>
267 <replace file="${test.dir}/config/@{testfamily}-josm.home/preferences.xml" encoding="UTF-8" token="@OSM_USERNAME@" value="${osm.username}"/>
268 <replace file="${test.dir}/config/@{testfamily}-josm.home/preferences.xml" encoding="UTF-8" token="@OSM_PASSWORD@" value="${osm.password}"/>
269 <!-- Works only on Windows, does nothing on Unix -->
270 <attrib file="${test.dir}/config/@{testfamily}-josm.home/preferences.xml" readonly="true"/>
271 <!-- Works only on Unix, does nothing on Windows -->
272 <chmod file="${test.dir}/config/@{testfamily}-josm.home/preferences.xml" perm="a-w"/>
273 </sequential>
274 </macrodef>
275 <target name="test-init">
276 <mkdir dir="${test.dir}/build"/>
277 <mkdir dir="${test.dir}/build/unit"/>
278 <mkdir dir="${test.dir}/build/functional"/>
279 <mkdir dir="${test.dir}/build/performance"/>
280 <mkdir dir="${test.dir}/report"/>
281 <init-test-preferences testfamily="unit"/>
282 <init-test-preferences testfamily="functional"/>
283 <init-test-preferences testfamily="performance"/>
284 </target>
285 <target name="test-clean">
286 <delete dir="${test.dir}/build"/>
287 <delete dir="${test.dir}/report"/>
288 <delete file="${test.dir}/jacoco.exec" />
289 <delete file="${test.dir}/config/unit-josm.home/preferences.xml" />
290 <delete file="${test.dir}/config/functional-josm.home/preferences.xml" />
291 <delete file="${test.dir}/config/performance-josm.home/preferences.xml" />
292 <delete dir="${test.dir}/config/unit-josm.home/cache" failonerror="false"/>
293 <delete dir="${test.dir}/config/functional-josm.home/cache" failonerror="false"/>
294 <delete dir="${test.dir}/config/performance-josm.home/cache" failonerror="false"/>
295 </target>
296 <macrodef name="call-groovyc">
297 <attribute name="testfamily"/>
298 <element name="cp-elements"/>
299 <sequential>
300 <groovyc srcdir="${test.dir}/@{testfamily}" destdir="${test.dir}/build/@{testfamily}" encoding="UTF-8">
301 <classpath>
302 <cp-elements/>
303 </classpath>
304 <javac target="1.7" source="1.7" debug="on">
305 <compilerarg value="-Xlint:all"/>
306 <compilerarg value="-Xlint:-serial"/>
307 </javac>
308 </groovyc>
309 </sequential>
310 </macrodef>
311 <target name="test-compile" depends="test-init,dist">
312 <taskdef name="groovyc" classname="org.codehaus.groovy.ant.Groovyc" classpath="tools/groovy-all-2.2.2.jar"/>
313 <call-groovyc testfamily="unit">
314 <cp-elements>
315 <path refid="test.classpath"/>
316 </cp-elements>
317 </call-groovyc>
318 <call-groovyc testfamily="functional">
319 <cp-elements>
320 <path refid="test.classpath"/>
321 <pathelement path="${test.dir}/build/unit"/>
322 </cp-elements>
323 </call-groovyc>
324 <call-groovyc testfamily="performance">
325 <cp-elements>
326 <path refid="test.classpath"/>
327 <pathelement path="${test.dir}/build/unit"/>
328 </cp-elements>
329 </call-groovyc>
330 </target>
331 <macrodef name="call-junit">
332 <attribute name="testfamily"/>
333 <sequential>
334 <echo message="Running @{testfamily} tests with JUnit"/>
335 <jacoco:coverage destfile="${test.dir}/jacoco.exec">
336 <junit printsummary="yes" fork="true" forkmode="once">
337 <sysproperty key="josm.home" value="${test.dir}/config/@{testfamily}-josm.home"/>
338 <sysproperty key="josm.test.data" value="${test.dir}/data"/>
339 <sysproperty key="java.awt.headless" value="true"/>
340 <sysproperty key="suppressPermanentFailure" value="${suppressPermanentFailure}"/>
341 <classpath>
342 <path refid="test.classpath"/>
343 <pathelement path="${test.dir}/build/unit"/>
344 <pathelement path="${test.dir}/build/@{testfamily}"/>
345 <pathelement path="${test.dir}/config"/>
346 </classpath>
347 <formatter type="plain"/>
348 <formatter type="xml"/>
349 <batchtest fork="yes" todir="${test.dir}/report">
350 <fileset dir="${test.dir}/build/@{testfamily}" includes="**/*Test.class"/>
351 </batchtest>
352 </junit>
353 </jacoco:coverage>
354 </sequential>
355 </macrodef>
356 <target name="test" depends="test-compile"
357 description="Run unit, functional and performance tests. OSM API (TEST) account shall be set with -Dosm.username and -Dosm.password">
358 <taskdef uri="antlib:org.jacoco.ant" resource="org/jacoco/ant/antlib.xml" classpath="tools/jacocoant.jar" />
359 <call-junit testfamily="unit"/>
360 <call-junit testfamily="functional"/>
361 <call-junit testfamily="performance"/>
362 </target>
363 <target name="test-html" depends="test" description="Generate HTML test reports">
364 <!-- May require additional ant dependencies like ant-trax package -->
365 <junitreport todir="${test.dir}/report">
366 <fileset dir="${test.dir}/report">
367 <include name="TEST-*.xml"/>
368 </fileset>
369 <report todir="${test.dir}/report/html"/>
370 </junitreport>
371 <jacoco:report>
372 <executiondata>
373 <file file="${test.dir}/jacoco.exec"/>
374 </executiondata>
375 <structure name="JOSM Test Coverage">
376 <classfiles>
377 <fileset dir="${build.dir}" includes="org/openstreetmap/"/>
378 </classfiles>
379 <sourcefiles encoding="UTF-8">
380 <fileset dir="${src.dir}" includes="org/openstreetmap/"/>
381 </sourcefiles>
382 </structure>
383 <html destdir="${test.dir}/report/jacoco"/>
384 </jacoco:report>
385 </target>
386 <target name="dist-optimized" depends="dist">
387 <taskdef resource="proguard/ant/task.properties" classpath="tools/proguard.jar"/>
388 <proguard>
389 -injars dist/josm-custom.jar
390 -outjars dist/josm-custom-optimized.jar
391
392 -libraryjars ${java.home}/lib/rt.jar
393 -libraryjars ${java.home}/lib/jce.jar
394
395 -dontoptimize
396 -dontobfuscate
397
398 # These options probably are not necessary (and make processing a bit slower)
399 -dontskipnonpubliclibraryclasses
400 -dontskipnonpubliclibraryclassmembers
401
402 -keepclasseswithmembers public class org.openstreetmap.josm.gui.MainApplication {
403 public static void main(java.lang.String[]);
404 }
405 -keepclasseswithmembers public class org.openstreetmap.josm.gui.MainApplet
406
407 -keep class JOSM
408 -keep class * extends org.openstreetmap.josm.io.FileImporter
409 -keep class * extends org.openstreetmap.josm.io.FileExporter
410 -keep class org.openstreetmap.josm.data.imagery.types.Adapter1
411 -keep class org.openstreetmap.josm.actions.search.SearchCompiler$Never
412
413 -keepclassmembers enum * {
414 public static **[] values();
415 public static ** valueOf(java.lang.String);
416 }
417
418 # Keep unused public methods (can be useful for plugins)
419 -keepclassmembers class * {
420 public protected *;
421 }
422
423 # Disable annoying [proguard] Note: the configuration keeps the entry point '...', but not the descriptor class '...'. This notes should not be a problem as we don't use obfuscation
424 -dontnote
425 </proguard>
426 </target>
427 <target name="check-plugins" depends="dist-optimized">
428 <echo message="Check of plugins binary compatibility (needs ant 1.8)"/>
429 <local name="dir"/>
430 <local name="plugins"/>
431 <property name="dir" value="plugin-check"/>
432 <typedef uri="antlib:org.codehaus.mojo.animal_sniffer">
433 <classpath path="tools/animal-sniffer-ant-tasks-1.8.jar"/>
434 </typedef>
435 <mkdir dir="${dir}"/>
436 <!-- List of deprecated plugins -->
437 <loadfile property="deprecated-plugins" srcFile="src/org/openstreetmap/josm/plugins/PluginHandler.java">
438 <filterchain>
439 <linecontains>
440 <contains value="new DeprecatedPlugin("/>
441 </linecontains>
442 <tokenfilter>
443 <replaceregex pattern=".*new DeprecatedPlugin\(&quot;(.+?)&quot;.*" replace="\1|" flags="gi"/>
444 </tokenfilter>
445 <striplinebreaks/>
446 <tokenfilter>
447 <replaceregex pattern="\|$" replace="" flags="gi"/>
448 </tokenfilter>
449 </filterchain>
450 </loadfile>
451 <!-- Download list of plugins -->
452 <loadresource property="plugins">
453 <url url="https://josm.openstreetmap.de/plugin"/>
454 <filterchain>
455 <linecontainsregexp negate="true">
456 <regexp pattern="^\t.*"/>
457 </linecontainsregexp>
458 <linecontainsregexp negate="true">
459 <regexp pattern="${deprecated-plugins}"/>
460 </linecontainsregexp>
461 <tokenfilter>
462 <replaceregex pattern="^.*;" replace="" flags="gi"/>
463 </tokenfilter>
464 </filterchain>
465 </loadresource>
466 <!-- Delete files that are not in plugin list (like old plugins) -->
467 <loadresource property="file-list">
468 <propertyresource name="plugins"/>
469 <filterchain>
470 <tokenfilter>
471 <replaceregex pattern="^.*/(.*)$" replace="\1\|" flags=""/>
472 </tokenfilter>
473 <striplinebreaks/>
474 <tokenfilter>
475 <replaceregex pattern="\|$" replace="" flags="gi"/>
476 </tokenfilter>
477 </filterchain>
478 </loadresource>
479 <delete>
480 <restrict>
481 <fileset dir="${dir}"/>
482 <not>
483 <name regex="${file-list}"/>
484 </not>
485 </restrict>
486 </delete>
487 <!-- Download plugins -->
488 <copy todir="${dir}" flatten="true">
489 <resourcelist>
490 <string value="${plugins}"/>
491 </resourcelist>
492 </copy>
493 <!-- Check plugins -->
494 <as:build-signatures destfile="${dir}/api.sig">
495 <path>
496 <fileset file="dist/josm-custom-optimized.jar"/>
497 <fileset file="${java.home}/lib/rt.jar"/>
498 <fileset file="${java.home}/lib/jce.jar"/>
499 </path>
500 </as:build-signatures>
501 <as:check-signature signature="${dir}/api.sig">
502 <ignore classname="org.jgraph.*"/>
503 <ignore classname="com.touchgraph.*"/>
504 <ignore classname="com.sun.xml.fastinfoset.*"/>
505 <ignore classname="javax.jms.*"/>
506 <ignore classname="org.jvnet.staxex.*"/>
507 <ignore classname="javax.mail.*"/>
508 <ignore classname="com.sun.jdmk.*"/>
509 <ignore classname="org.apache.avalon.framework.logger.Logger"/>
510 <ignore classname="org.apache.log.*"/>
511 <ignore classname="junit.*"/>
512 <path path="${dir}"/>
513 </as:check-signature>
514 </target>
515
516 <target name="findbugs" depends="dist">
517 <taskdef name="findbugs" classname="edu.umd.cs.findbugs.anttask.FindBugsTask" classpath="tools/findbugs/findbugs-ant.jar"/>
518 <path id="findbugs-classpath">
519 <fileset dir="tools/findbugs/">
520 <include name="*.jar"/>
521 </fileset>
522 </path>
523 <property name="findbugs-classpath" refid="findbugs-classpath"/>
524 <findbugs output="xml"
525 outputFile="findbugs-josm.xml"
526 classpath="${findbugs-classpath}"
527 pluginList=""
528 excludeFilter="tools/findbugs/josm-filter.xml"
529 effort="max"
530 >
531 <sourcePath path="${basedir}/src" />
532 <class location="${basedir}/dist/josm-custom.jar" />
533 </findbugs>
534 </target>
535 <target name="run" depends="dist">
536 <java jar="dist/josm-custom.jar" fork="true">
537 <arg value="--set=expert=true"/>
538 <arg value="--set=remotecontrol.enabled=true"/>
539 <arg value="--set=debug.edt-checker.enable=false"/>
540 <jvmarg value="-Djosm.home=/tmp/.josm/"/>
541 </java>
542 </target>
543
544</project>
Note: See TracBrowser for help on using the repository browser.