source: josm/trunk/build.xml @ 9212

Last change on this file since 9212 was 9212, checked in by Don-vip, 8 years ago

checkstyle 6.14 + tune xml validation settings in Eclipse project

File size: 31.5 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/DevelopersGuide/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    <property name="epsg.output" location="data/projection/custom-epsg"/>
18    <property name="groovy.jar" location="tools/groovy-all-2.4.5.jar"/>
19    <!-- build parameter: compression level (ant -Dclevel=N)
20             N ranges from 0 (no compression) to 9 (maximum compression)
21             default: 9 -->
22    <condition property="clevel" value="${clevel}" else="9">
23        <isset property="clevel"/>
24    </condition>
25    <!-- For Java9-specific stuff -->
26    <condition property="isJava9">
27        <equals arg1="${ant.java.version}" arg2="1.9" />
28    </condition>
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" unless="check-schemas.notRequired">
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    </target>
101    <!--
102      ** Main target that builds JOSM and checks XML against schemas
103    -->
104    <target name="dist" depends="compile,create-revision,check-schemas,epsg">
105        <echo>Revision ${version.entry.commit.revision}</echo>
106        <copy file="CONTRIBUTION" todir="build"/>
107        <copy file="README" todir="build"/>
108        <copy file="LICENSE" todir="build"/>
109        <!-- create josm-custom.jar -->
110        <delete file="dist/josm-custom.jar"/>
111        <jar destfile="dist/josm-custom.jar" basedir="build" level="${clevel}">
112            <!-- add attribute excludes="**/*BZip2*,**/*Bzip2*" to create a non-bzip2 supporting jar -->
113            <manifest>
114                <attribute name="Main-class" value="JOSM"/>
115                <attribute name="Main-Version" value="${version.entry.commit.revision} SVN"/>
116                <attribute name="Main-Date" value="${version.entry.commit.date}"/>
117                <attribute name="Permissions" value="all-permissions"/>
118                <attribute name="Codebase" value="josm.openstreetmap.de"/>
119                <attribute name="Application-Name" value="JOSM - Java OpenStreetMap Editor"/>
120            </manifest>
121            <zipfileset dir="images" prefix="images"/>
122            <zipfileset dir="data" prefix="data"/>
123            <zipfileset dir="styles" prefix="styles"/>
124            <zipfileset dir="${src.dir}/org/openstreetmap/gui/jmapviewer/images" prefix="org/openstreetmap/gui/jmapviewer/images"/>
125        </jar>
126    </target>
127    <!-- Mac OS X target -->
128    <target name="mac">
129        <!-- Using https://bitbucket.org/infinitekind/appbundler to create mac application bundle -->
130        <taskdef name="bundleapp" classname="com.oracle.appbundler.AppBundlerTask" classpath="tools/appbundler-1.0ea.jar"/>
131        <!-- create MacOS X application bundle -->
132        <bundleapp outputdirectory="${bundle.outdir}" name="JOSM" displayname="JOSM" executablename="JOSM" identifier="org.openstreetmap.josm"
133                   mainclassname="org.openstreetmap.josm.gui.MainApplication"
134                   copyright="JOSM, and all its integral parts, are released under the GNU General Public License v2 or later"
135                   applicationCategory="public.app-category.utilities"
136                   shortversion="${version.entry.commit.revision} SVN"
137                   version="${version.entry.commit.revision} SVN"
138                   icon="macosx/JOSM.app/Contents/Resources/JOSM.icns"
139                   highResolutionCapable="true">
140
141            <arch name="x86_64"/>
142            <arch name="i386"/>
143
144            <classpath file="${bundle.jar}"/>
145
146            <option value="-Xmx1024m"/>
147
148            <option value="-Xdock:icon=Contents/Resources/JOSM.icns"/>
149            <option value="-Xdock:name=JOSM"/>
150
151            <!-- OSX specific options, optional -->
152            <option value="-Dapple.laf.useScreenMenuBar=true"/>
153            <option value="-Dcom.apple.macos.use-file-dialog-packages=true"/>
154            <option value="-Dcom.apple.macos.useScreenMenuBar=true"/>
155            <option value="-Dcom.apple.mrj.application.apple.menu.about.name=JOSM"/>
156            <option value="-Dcom.apple.smallTabs=true"/>
157        </bundleapp>
158       
159        <!-- appbundler lacks the possibility of defining our own keys or using a template, so update the .plist manually -->
160        <taskdef name="xmltask" classname="com.oopsconsultancy.xmltask.ant.XmlTask" classpath="tools/xmltask.jar"/>
161       
162        <xmltask source="${bundle.outdir}/JOSM.app/Contents/Info.plist" dest="${bundle.outdir}/JOSM.app/Contents/Info.plist" indent="false">
163            <!-- remove empty CFBundleDocumentTypes definition -->
164            <remove path="/plist/dict/key[text()='CFBundleDocumentTypes']|/plist/dict/key[text()='CFBundleDocumentTypes']/following-sibling::array[1]"/>
165            <!-- insert our own keys -->
166            <insert position="before" path="/plist/dict/key[1]" file="macosx/JOSM.app/Contents/Info.plist_template.xml" />
167        </xmltask>
168       
169        <!-- create ZIP file with MacOS X application bundle -->
170        <zip destfile="${bundle.outdir}/josm-custom-macosx.zip" update="true">
171            <zipfileset dir="." includes="CONTRIBUTION README LICENSE"/>
172            <zipfileset dir="${bundle.outdir}" includes="JOSM.app/**/*" filemode="755" />
173        </zip>
174    </target>
175    <target name="distmac" depends="dist">
176        <antcall target="mac">
177            <param name="bundle.outdir" value="dist"/>
178            <param name="bundle.jar" value="dist/josm-custom.jar"/>
179        </antcall>
180    </target>
181    <!-- Windows target -->
182    <target name="distwin" depends="dist">
183        <exec dir="windows" executable="./josm-setup-unix.sh">
184            <arg value="${version.entry.commit.revision}"/>
185            <arg value="../dist/josm-custom.jar"/>
186        </exec>
187    </target>
188    <target name="javacc" depends="init" unless="javacc.notRequired">
189        <mkdir dir="${mapcss.dir}/parsergen"/>
190        <exec append="false" executable="java" failifexecutionfails="true">
191            <arg value="-cp"/>
192            <arg value="${javacc.home}/javacc.jar"/>
193            <arg value="javacc"/>
194            <arg value="-DEBUG_PARSER=false"/>
195            <arg value="-DEBUG_TOKEN_MANAGER=false"/>
196            <arg value="-JDK_VERSION=1.7"/>
197            <arg value="-GRAMMAR_ENCODING=UTF-8"/>
198            <arg value="-OUTPUT_DIRECTORY=${mapcss.dir}/parsergen"/>
199            <arg value="${mapcss.dir}/MapCSSParser.jj"/>
200        </exec>
201    </target>
202    <target name="compile" depends="init,javacc">
203        <!-- COTS -->
204        <javac srcdir="${src.dir}" includes="com/**,oauth/**,org/apache/commons/**,org/glassfish/**" nowarn="on" encoding="iso-8859-1"
205            destdir="build" target="1.7" source="1.7" debug="on" includeAntRuntime="false" createMissingPackageInfoClass="false">
206            <!-- get rid of "internal proprietary API" warning -->
207            <compilerarg value="-XDignore.symbol.file"/>
208            <exclude name="org/apache/commons/compress/compressors/lzma/**"/>
209            <exclude name="org/apache/commons/compress/compressors/xz/**"/>
210            <exclude name="org/apache/commons/compress/compressors/CompressorStreamFactory.java"/>
211            <exclude name="org/apache/commons/compress/compressors/deflate/**"/>
212            <exclude name="org/apache/commons/compress/compressors/gzip/**"/>
213            <exclude name="org/apache/commons/compress/compressors/lzw/**"/>
214            <exclude name="org/apache/commons/compress/compressors/pack200/**"/>
215            <exclude name="org/apache/commons/compress/compressors/snappy/**"/>
216            <exclude name="org/apache/commons/compress/compressors/z/**"/>
217            <exclude name="org/apache/commons/jcs/admin/**"/>
218            <exclude name="org/apache/commons/jcs/auxiliary/disk/jdbc/**"/>
219            <exclude name="org/apache/commons/jcs/auxiliary/remote/**"/>
220            <exclude name="org/apache/commons/jcs/utils/servlet/**"/>
221            <exclude name="org/apache/commons/logging/impl/AvalonLogger.java"/>
222            <exclude name="org/apache/commons/logging/impl/Jdk13LumberjackLogger.java"/>
223            <exclude name="org/apache/commons/logging/impl/Log4JLogger.java"/>
224            <exclude name="org/apache/commons/logging/impl/LogKitLogger.java"/>
225            <exclude name="org/apache/commons/logging/impl/ServletContextCleaner.java"/>
226        </javac>
227        <!-- JMapViewer -->
228        <javac sourcepath="" srcdir="${src.dir}" excludes="com/**,oauth/**,org/apache/commons/**,org/glassfish/**,org/openstreetmap/gui/jmapviewer/Demo.java,org/openstreetmap/josm/**,JOSM.java,gnu/**" 
229            destdir="build" target="1.7" source="1.7" debug="on" includeantruntime="false" createMissingPackageInfoClass="false" encoding="UTF-8">
230            <compilerarg value="-Xlint:cast"/>
231            <compilerarg value="-Xlint:deprecation"/>
232            <compilerarg value="-Xlint:dep-ann"/>
233            <compilerarg value="-Xlint:divzero"/>
234            <compilerarg value="-Xlint:empty"/>
235            <compilerarg value="-Xlint:finally"/>
236            <compilerarg value="-Xlint:overrides"/>
237            <!--<compilerarg value="-Xlint:rawtypes"/>-->
238            <compilerarg value="-Xlint:static"/>
239            <compilerarg value="-Xlint:try"/>
240            <compilerarg value="-Xlint:unchecked"/>
241            <!-- Undocumented argument to ignore "Sun internal proprietary API" warning, see http://stackoverflow.com/a/13862308/2257172 -->
242            <compilerarg value="-XDignore.symbol.file"/>
243        </javac>
244        <!-- JOSM -->
245        <javac sourcepath="" srcdir="${src.dir}" excludes="com/**,oauth/**,org/apache/commons/**,org/glassfish/**,org/openstreetmap/gui/jmapviewer/Demo.java" 
246            destdir="build" target="1.7" source="1.7" debug="on" includeantruntime="false" createMissingPackageInfoClass="false" encoding="UTF-8">
247            <compilerarg value="-Xlint:cast"/>
248            <compilerarg value="-Xlint:deprecation"/>
249            <compilerarg value="-Xlint:dep-ann"/>
250            <compilerarg value="-Xlint:divzero"/>
251            <compilerarg value="-Xlint:empty"/>
252            <compilerarg value="-Xlint:finally"/>
253            <compilerarg value="-Xlint:overrides"/>
254            <!--<compilerarg value="-Xlint:rawtypes"/>-->
255            <compilerarg value="-Xlint:static"/>
256            <compilerarg value="-Xlint:try"/>
257            <compilerarg value="-Xlint:unchecked"/>
258            <!-- Undocumented argument to ignore "Sun internal proprietary API" warning, see http://stackoverflow.com/a/13862308/2257172 -->
259            <compilerarg value="-XDignore.symbol.file"/>
260        </javac>
261
262        <copy todir="build" failonerror="no" includeemptydirs="no">
263            <fileset dir="resources"/>
264        </copy>
265    </target>
266    <target name="init">
267        <uptodate property="javacc.notRequired" targetfile="${mapcss.dir}/parsergen/MapCSSParser.java" >
268            <srcfiles dir="${mapcss.dir}" includes="MapCSSParser.jj"/>
269        </uptodate>
270        <mkdir dir="build"/>
271        <mkdir dir="dist"/>
272    </target>
273    <target name="javadoc">
274        <javadoc destdir="javadoc" 
275                sourcepath="${src.dir}"
276                encoding="UTF-8"   
277                packagenames="org.openstreetmap.josm.*,org.openstreetmap.gui.jmapviewer.*"
278                windowtitle="JOSM"
279                use="true"
280                private="true"
281                linksource="true"
282                author="false">
283            <link href="http://docs.oracle.com/javase/7/docs/api"/>
284            <doctitle><![CDATA[<h2>JOSM - Javadoc</h2>]]></doctitle>
285            <bottom><![CDATA[<a href="https://josm.openstreetmap.de/">JOSM</a>]]></bottom>
286        </javadoc>
287    </target>
288    <target name="clean">
289        <delete dir="build"/>
290        <delete dir="build2"/>
291        <delete dir="dist"/>
292        <delete dir="${mapcss.dir}/parsergen"/>
293        <delete file="${src.dir}/org/w3/_2001/xmlschema/Adapter1.java"/>
294        <delete dir="${src.dir}/org/openstreetmap/josm/data/imagery/types"/>
295        <delete file="${epsg.output}"/>
296    </target>
297    <path id="test.classpath">
298        <fileset dir="${test.dir}/lib">
299            <include name="**/*.jar"/>
300        </fileset>
301        <pathelement path="dist/josm-custom.jar"/>
302        <pathelement path="${groovy.jar}"/>
303        <pathelement path="tools/findbugs/annotations.jar"/>
304    </path>
305    <macrodef name="init-test-preferences">
306        <attribute name="testfamily"/>
307        <sequential>
308            <copy file="${test.dir}/config/preferences.template.xml" tofile="${test.dir}/config/@{testfamily}-josm.home/preferences.xml"/>
309            <replace file="${test.dir}/config/@{testfamily}-josm.home/preferences.xml" encoding="UTF-8" token="@OSM_USERNAME@" value="${osm.username}"/>
310            <replace file="${test.dir}/config/@{testfamily}-josm.home/preferences.xml" encoding="UTF-8" token="@OSM_PASSWORD@" value="${osm.password}"/>
311        </sequential>
312    </macrodef>
313    <target name="test-init">
314        <mkdir dir="${test.dir}/build"/>
315        <mkdir dir="${test.dir}/build/unit"/>
316        <mkdir dir="${test.dir}/build/functional"/>
317        <mkdir dir="${test.dir}/build/performance"/>
318        <mkdir dir="${test.dir}/report"/>
319        <init-test-preferences testfamily="unit"/>
320        <init-test-preferences testfamily="functional"/>
321        <init-test-preferences testfamily="performance"/>
322    </target>
323    <target name="test-clean">
324        <delete dir="${test.dir}/build"/>
325        <delete dir="${test.dir}/report"/>
326        <delete file="${test.dir}/jacoco.exec" />
327        <delete file="${test.dir}/config/unit-josm.home/preferences.xml" />
328        <delete file="${test.dir}/config/functional-josm.home/preferences.xml" />
329        <delete file="${test.dir}/config/performance-josm.home/preferences.xml" />
330        <delete dir="${test.dir}/config/unit-josm.home/cache" failonerror="false"/>
331        <delete dir="${test.dir}/config/functional-josm.home/cache" failonerror="false"/>
332        <delete dir="${test.dir}/config/performance-josm.home/cache" failonerror="false"/>
333    </target>
334    <macrodef name="call-groovyc">
335        <attribute name="testfamily"/>
336        <element name="cp-elements"/>
337        <sequential>
338            <groovyc srcdir="${test.dir}/@{testfamily}" destdir="${test.dir}/build/@{testfamily}" encoding="UTF-8">
339                <classpath>
340                    <cp-elements/>
341                </classpath>
342                <javac target="1.7" source="1.7" debug="on" encoding="UTF-8">
343                    <compilerarg value="-Xlint:all"/>
344                    <compilerarg value="-Xlint:-serial"/>
345                </javac>
346            </groovyc>
347        </sequential>
348    </macrodef>
349    <target name="test-compile" depends="test-init,dist">
350        <taskdef name="groovyc" classname="org.codehaus.groovy.ant.Groovyc" classpath="${groovy.jar}"/>
351        <call-groovyc testfamily="unit">
352            <cp-elements>
353                <path refid="test.classpath"/>
354            </cp-elements>
355        </call-groovyc>
356        <call-groovyc testfamily="functional">
357            <cp-elements>
358                <path refid="test.classpath"/>
359                <pathelement path="${test.dir}/build/unit"/>
360            </cp-elements>
361        </call-groovyc>
362        <call-groovyc testfamily="performance">
363            <cp-elements>
364                <path refid="test.classpath"/>
365                <pathelement path="${test.dir}/build/unit"/>
366            </cp-elements>
367        </call-groovyc>
368    </target>
369    <macrodef name="call-junit">
370        <attribute name="testfamily"/>
371        <sequential>
372            <echo message="Running @{testfamily} tests with JUnit"/>
373            <jacoco:coverage destfile="${test.dir}/jacoco.exec">
374                <junit printsummary="yes" fork="true" forkmode="once">
375                    <jvmarg value="-Dfile.encoding=UTF-8"/>
376                    <sysproperty key="josm.home" value="${test.dir}/config/@{testfamily}-josm.home"/>
377                    <sysproperty key="josm.test.data" value="${test.dir}/data"/>
378                    <sysproperty key="java.awt.headless" value="true"/>
379                    <sysproperty key="suppressPermanentFailure" value="${suppressPermanentFailure}"/>
380                    <classpath>
381                        <path refid="test.classpath"/>
382                        <pathelement path="${test.dir}/build/unit"/>
383                        <pathelement path="${test.dir}/build/@{testfamily}"/>
384                        <pathelement path="${test.dir}/config"/>
385                    </classpath>
386                    <formatter type="plain"/>
387                    <formatter type="xml"/>
388                    <batchtest fork="yes" todir="${test.dir}/report">
389                        <fileset dir="${test.dir}/build/@{testfamily}" includes="**/*Test.class"/>
390                    </batchtest>
391                </junit>
392            </jacoco:coverage>
393        </sequential>
394    </macrodef>
395    <target name="test" depends="test-compile" 
396        description="Run unit, functional and performance tests. OSM API (TEST) account shall be set with -Dosm.username and -Dosm.password">
397        <taskdef uri="antlib:org.jacoco.ant" resource="org/jacoco/ant/antlib.xml" classpath="tools/jacocoant.jar" />
398        <call-junit testfamily="unit"/>
399        <call-junit testfamily="functional"/>
400        <call-junit testfamily="performance"/>
401    </target>
402    <target name="test-html" depends="test" description="Generate HTML test reports">
403        <!-- May require additional ant dependencies like ant-trax package -->
404        <junitreport todir="${test.dir}/report">
405            <fileset dir="${test.dir}/report">
406                <include name="TEST-*.xml"/>
407            </fileset>
408            <report todir="${test.dir}/report/html"/>
409        </junitreport>
410        <jacoco:report>
411            <executiondata>
412                <file file="${test.dir}/jacoco.exec"/>
413            </executiondata>
414            <structure name="JOSM Test Coverage">
415                <classfiles>
416                    <fileset dir="${build.dir}" includes="org/openstreetmap/"/>
417                </classfiles>
418                <sourcefiles encoding="UTF-8">
419                    <fileset dir="${src.dir}" includes="org/openstreetmap/"/>
420                </sourcefiles>
421            </structure>
422            <html destdir="${test.dir}/report/jacoco"/>
423        </jacoco:report>
424    </target>
425    <!-- Proguard does not support Java 9 : http://sourceforge.net/p/proguard/bugs/551/ -->
426    <target name="dist-optimized" depends="dist" unless="isJava9">
427        <taskdef resource="proguard/ant/task.properties" classpath="tools/proguard.jar"/>
428        <proguard>
429        -injars dist/josm-custom.jar
430        -outjars dist/josm-custom-optimized.jar
431
432        -libraryjars ${java.home}/lib/rt.jar
433        -libraryjars ${java.home}/lib/jce.jar
434
435        -dontoptimize
436        -dontobfuscate
437
438        # These options probably are not necessary (and make processing a bit slower)
439        -dontskipnonpubliclibraryclasses
440        -dontskipnonpubliclibraryclassmembers
441
442        -keepclasseswithmembers public class org.openstreetmap.josm.gui.MainApplication {
443            public static void main(java.lang.String[]);
444        }
445
446        -keep class JOSM
447        -keep class * extends org.openstreetmap.josm.io.FileImporter
448        -keep class * extends org.openstreetmap.josm.io.FileExporter
449        -keep class org.openstreetmap.josm.actions.search.SearchCompiler$Never
450        -keep class org.openstreetmap.josm.gui.mappaint.mapcss.Condition$PseudoClasses {
451            static boolean *(org.openstreetmap.josm.gui.mappaint.Environment);
452        }
453        -keep class org.apache.commons.logging.impl.*
454
455        -keepclassmembers enum  * {
456            public static **[] values();
457            public static ** valueOf(java.lang.String);
458        }
459
460        # Keep unused public methods (can be useful for plugins)
461        -keepclassmembers class * {
462            public protected *;
463        }
464
465        # Disable annoying [proguard] Note: the configuration keeps the entry point '...', but not the descriptor class '...'.
466        # This note should not be a problem as we don't use obfuscation
467        -dontnote
468        </proguard>
469    </target>
470    <target name="check-plugins" depends="dist-optimized">
471        <echo message="Check of plugins binary compatibility (needs ant 1.8)"/>
472        <local name="dir"/>
473        <local name="plugins"/>
474        <property name="dir" value="plugin-check"/>
475        <typedef uri="antlib:org.codehaus.mojo.animal_sniffer">
476            <classpath path="tools/animal-sniffer-ant-tasks-1.14.jar"/>
477        </typedef>
478        <mkdir dir="${dir}"/>
479        <!-- List of deprecated plugins -->
480        <loadfile property="deprecated-plugins" srcFile="${src.dir}/org/openstreetmap/josm/plugins/PluginHandler.java">
481            <filterchain>
482                <linecontains>
483                    <contains value="new DeprecatedPlugin("/>
484                </linecontains>
485                <tokenfilter>
486                    <replaceregex pattern=".*new DeprecatedPlugin\(&quot;(.+?)&quot;.*" replace="\1|" flags="gi"/>
487                </tokenfilter>
488                <striplinebreaks/>
489                <tokenfilter>
490                    <replaceregex pattern="\|$" replace="" flags="gi"/>
491                </tokenfilter>
492            </filterchain>
493        </loadfile>
494        <!-- Download list of plugins -->
495        <loadresource property="plugins">
496            <url url="https://josm.openstreetmap.de/plugin"/>
497            <filterchain>
498                <linecontainsregexp negate="true">
499                    <regexp pattern="^\t.*"/>
500                </linecontainsregexp>
501                <linecontainsregexp negate="true">
502                    <regexp pattern="${deprecated-plugins}"/>
503                </linecontainsregexp>
504                <tokenfilter>
505                    <replaceregex pattern="^.*;" replace="" flags="gi"/>
506                </tokenfilter>
507            </filterchain>
508        </loadresource>
509        <!-- Delete files that are not in plugin list (like old plugins) -->
510        <loadresource property="file-list">
511            <propertyresource name="plugins"/>
512            <filterchain>
513                <tokenfilter>
514                    <replaceregex pattern="^.*/(.*)$" replace="\1\|" flags=""/>
515                </tokenfilter>
516                <striplinebreaks/>
517                <tokenfilter>
518                    <replaceregex pattern="\|$" replace="" flags="gi"/>
519                </tokenfilter>   
520            </filterchain>
521        </loadresource>
522        <delete>
523            <restrict>
524                <fileset dir="${dir}"/>
525                <not>
526                    <name regex="${file-list}"/>
527                </not>
528            </restrict>
529        </delete>
530        <!-- Download plugins -->
531        <copy todir="${dir}" flatten="true">
532            <resourcelist>
533                <string value="${plugins}"/>
534            </resourcelist>
535        </copy>
536        <!-- Check plugins -->
537        <as:build-signatures destfile="${dir}/api.sig">
538            <path>
539                <fileset file="dist/josm-custom-optimized.jar"/>
540                <fileset file="${java.home}/lib/rt.jar"/>
541                <fileset file="${java.home}/lib/jce.jar"/>
542            </path>
543        </as:build-signatures>
544        <as:check-signature signature="${dir}/api.sig">
545            <ignore classname="au.edu.*"/>
546            <ignore classname="au.com.*"/>
547            <ignore classname="com.*"/>
548            <ignore classname="de.miethxml.*"/>
549            <ignore classname="javafx.*"/>
550            <ignore classname="javax.*"/>
551            <ignore classname="jogamp.*"/>
552            <ignore classname="junit.*"/>
553            <ignore classname="net.sf.*"/>
554            <ignore classname="nu.xom.*"/>
555            <ignore classname="org.apache.*"/>
556            <ignore classname="org.codehaus.*"/>
557            <ignore classname="org.dom4j.*"/>
558            <ignore classname="org.hsqldb.*"/>
559            <ignore classname="org.ibex.*"/>
560            <ignore classname="org.iso_relax.*"/>
561            <ignore classname="org.jaitools.*"/>
562            <ignore classname="org.jaxen.*"/>
563            <ignore classname="org.jdom2.*"/>
564            <ignore classname="org.jgraph.*"/>
565            <ignore classname="org.joda.time.*"/>
566            <ignore classname="org.jvnet.staxex.*"/>
567            <ignore classname="org.kxml2.*"/>
568            <ignore classname="org.objectweb.*"/>
569            <ignore classname="org.python.*"/>
570            <ignore classname="org.slf4j.*"/>
571            <!-- plugins used by another ones -->
572            <ignore classname="org.openstreetmap.josm.plugins.geotools.*"/>
573            <ignore classname="org.openstreetmap.josm.plugins.jna.*"/>
574            <ignore classname="org.openstreetmap.josm.plugins.jts.*"/>
575            <ignore classname="org.openstreetmap.josm.plugins.log4j.*"/>
576            <ignore classname="org.openstreetmap.josm.plugins.utilsplugin2.*"/>
577            <path path="${dir}"/>
578        </as:check-signature>
579    </target>
580
581    <macrodef name="_taginfo">
582        <attribute name="type"/>
583        <attribute name="output"/>
584        <sequential>
585            <echo message="Generating Taginfo for type @{type} to @{output}"/>
586            <groovy src="${taginfoextract}" classpath="dist/josm-custom.jar">
587                <arg value="-t"/>
588                <arg value="@{type}"/>
589                <arg value="--noexit"/>
590                <arg value="--svnweb"/>
591                <arg value="--imgurlprefix"/>
592                <arg value="${imgurlprefix}"/>
593                <arg value="-o"/>
594                <arg value="@{output}"/>
595            </groovy>
596        </sequential>
597    </macrodef>
598
599    <target name="taginfo" depends="dist">
600        <taskdef name="groovy" classname="org.codehaus.groovy.ant.Groovy" classpath="${groovy.jar};tools/commons-cli-1.3.1.jar"/>
601        <property name="taginfoextract" value="scripts/taginfoextract.groovy"/>
602        <property name="imgurlprefix" value="http://josm.openstreetmap.de/download/taginfo/taginfo-img"/>
603        <_taginfo type="mappaint" output="taginfo_style.json"/>
604        <_taginfo type="presets" output="taginfo_presets.json"/>
605        <_taginfo type="external_presets" output="taginfo_external_presets.json"/>
606    </target>
607
608    <target name="checkstyle">
609        <taskdef resource="com/puppycrawl/tools/checkstyle/ant/checkstyle-ant-task.properties" 
610                classpath="tools/checkstyle/checkstyle-6.14-all.jar"/>
611        <checkstyle config="tools/checkstyle/josm_checks.xml">
612            <fileset dir="${basedir}/src/org/openstreetmap/josm" includes="**/*.java" 
613                excludes="gui/mappaint/mapcss/parsergen/*.java"/>
614            <fileset dir="${basedir}/test" includes="**/*.java"/>
615            <formatter type="xml" toFile="checkstyle-josm.xml"/>
616        </checkstyle>
617    </target>
618
619    <target name="findbugs" depends="dist">
620        <taskdef name="findbugs" classname="edu.umd.cs.findbugs.anttask.FindBugsTask" classpath="tools/findbugs/findbugs-ant.jar"/>
621        <path id="findbugs-classpath">
622            <fileset dir="tools/findbugs/">
623                <include name="*.jar"/>
624            </fileset>
625        </path>
626        <property name="findbugs-classpath" refid="findbugs-classpath"/>
627        <findbugs output="xml"
628                outputFile="findbugs-josm.xml"
629                classpath="${findbugs-classpath}"
630                pluginList=""
631                excludeFilter="tools/findbugs/josm-filter.xml"
632                effort="max"
633                >
634            <sourcePath path="${basedir}/src" />
635            <class location="${basedir}/dist/josm-custom.jar" />
636        </findbugs>
637    </target>
638    <target name="run" depends="dist">
639        <java jar="dist/josm-custom.jar" fork="true">
640            <arg value="--set=expert=true"/>
641            <arg value="--set=remotecontrol.enabled=true"/>
642            <arg value="--set=debug.edt-checker.enable=false"/>
643            <jvmarg value="-Djosm.home=/tmp/.josm/"/>
644        </java>
645    </target>
646    <!-- compile build script for generating projection list -->
647    <target name="epsg-compile" depends="compile">
648        <mkdir dir="build2"/>
649        <javac sourcepath="" srcdir="scripts"
650            destdir="build2" target="1.7" source="1.7" debug="on" includeantruntime="false" createMissingPackageInfoClass="false" encoding="UTF-8" classpath="build">
651        </javac>
652    </target>
653    <!-- generate projection list -->
654    <target name="epsg" depends="epsg-compile">
655        <touch file="${epsg.output}"/>
656        <java classname="BuildProjectionDefinitions">
657            <classpath>
658                <pathelement path="."/>
659                <pathelement path="build"/>
660                <pathelement path="build2"/>
661            </classpath>
662        </java>
663    </target>
664</project>
Note: See TracBrowser for help on using the repository browser.