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

Last change on this file since 34545 was 34461, checked in by donvip, 7 years ago

build JAXB plugin first

File size: 2.2 KB
RevLine 
[26174]1<?xml version="1.0" encoding="utf-8"?>
[32306]2<project name="josm-plugins" default="dist" basedir=".">
[20283]3 <target name="compile_josm" unless="skip-josm">
[26174]4 <ant dir="../core" target="dist"/>
[12780]5 </target>
[30551]6 <target name="compile_josm_test" unless="skip-josm">
7 <ant dir="../core" target="test-compile"/>
8 </target>
[34461]9 <property name="ordered_plugins" value="jaxb/build.xml
10 jna/build.xml
[32310]11 jts/build.xml
12 gson/build.xml
13 ejml/build.xml
14 geotools/build.xml
15 utilsplugin2/build.xml
16 log4j/build.xml
17 apache-commons/build.xml
[33189]18 apache-http/build.xml
19 austriaaddresshelper/build.xml"/>
[32310]20 <macrodef name="iterate">
21 <attribute name="target"/>
22 <sequential>
[32327]23 <subant target="@{target}" inheritall="true">
[32310]24 <filelist dir="." files="${ordered_plugins}"/>
[34267]25 <fileset dir="." includes="*/build.xml" excludes="00_*/build.xml *.wip/build.xml ${ordered_plugins}"/>
[32310]26 </subant>
27 </sequential>
28 </macrodef>
29 <target name="clean">
30 <iterate target="clean"/>
31 </target>
[34267]32 <target name="compile">
33 <iterate target="compile"/>
34 </target>
[32310]35 <target name="dist" depends="compile_josm">
[12780]36 <mkdir dir="../dist"/>
[32310]37 <iterate target="dist"/>
[32311]38 <property name="skip-dist" value="true"/>
[32334]39 <property name="skip-compile" value="true"/>
40 <property name="skip-revision" value="true"/>
[32310]41 </target>
42 <target name="install" depends="dist">
43 <iterate target="install"/>
44 </target>
45 <target name="test" depends="compile_josm_test">
46 <iterate target="test"/>
47 </target>
48 <target name="checkstyle">
49 <iterate target="checkstyle"/>
50 </target>
[33592]51 <target name="spotbugs">
52 <iterate target="spotbugs"/>
[32310]53 </target>
[34038]54 <target name="javadoc">
55 <iterate target="javadoc"/>
56 </target>
[3779]57</project>
Note: See TracBrowser for help on using the repository browser.