source: osm/applications/editors/josm/plugins/opendata/modules/build.xml@ 36358

Last change on this file since 36358 was 35278, checked in by donvip, 5 years ago

move toulouse unit tests to module folder

File size: 1.2 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<project name="josm-opendata-modules" default="dist" basedir=".">
3 <macrodef name="run_target">
4 <attribute name="target" />
5 <sequential>
6 <ant antfile="build.xml" target="@{target}" dir="fr.datagouvfr"/>
7 <ant antfile="build.xml" target="@{target}" dir="fr.paris"/>
8 <ant antfile="build.xml" target="@{target}" dir="fr.toulouse"/>
9 </sequential>
10 </macrodef>
11 <target name="dist">
12 <mkdir dir="../dist"/>
13 <run_target target="dist"/>
14 <antcall target="list" />
15 </target>
16 <target name="clean">
17 <run_target target="clean"/>
18 </target>
19 <target name="test">
20 <run_target target="test"/>
21 </target>
22 <target name="install" depends="dist">
23 <run_target target="install"/>
24 </target>
25 <target name="list">
26 <mkdir dir="build"/>
27 <javac srcdir="../util" destdir="build" includes="opendata/**" includeantruntime="false" />
28 <java classpath="build" classname="opendata.ModuleListGenerator">
29 <arg line="../"/>
30 </java>
31 <delete dir="build" />
32 </target>
33</project>
Note: See TracBrowser for help on using the repository browser.