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

Last change on this file since 34673 was 34673, checked in by donvip, 6 years ago

drop obsolete modules

File size: 1.1 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="install" depends="dist">
20 <run_target target="install"/>
21 </target>
22 <target name="list">
23 <mkdir dir="build"/>
24 <javac srcdir="../util" destdir="build" includes="opendata/**" includeantruntime="false" />
25 <java classpath="build" classname="opendata.ModuleListGenerator">
26 <arg line="../"/>
27 </java>
28 <delete dir="build" />
29 </target>
30</project>
Note: See TracBrowser for help on using the repository browser.