forked from bndtools/bnd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
33 lines (33 loc) · 935 Bytes
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?xml version="1.0" encoding="UTF-8"?>
<project name="project" default="build">
<macrodef name="iterate">
<attribute name="target" />
<sequential>
<subant target="@{target}">
<fileset dir="." includes="*/build.xml" excludes="cnf/*" />
</subant>
</sequential>
</macrodef>
<target name="build">
<ant dir="biz.aQute.bnd" target="build" />
<ant dir="biz.aQute.repository" target="build" />
<ant dir="biz.aQute.resolve" target="build" />
</target>
<target name="dist" >
<ant dir="dist" target="release" />
</target>
<target name="release">
<ant dir="biz.aQute.bnd" target="release" />
<ant dir="biz.aQute.repository" target="release" />
<ant dir="biz.aQute.resolve" target="release" />
</target>
<target name="clean">
<iterate target="clean" />
</target>
<target name="junit">
<iterate target="junit" />
</target>
<target name="findbugs">
<iterate target="findbugs" />
</target>
</project>