forked from bndtools/bndtools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
50 lines (38 loc) · 1.26 KB
/
build.xml
File metadata and controls
50 lines (38 loc) · 1.26 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?xml version="1.0" encoding="UTF-8"?>
<project name="project" default="build">
<target name="__mainiterateinit" unless="__mainiterateinit_done">
<!-- tasks and macros must be defined in a task or we'll get
'Trying to override old definition of task ...' reports -->
<macrodef name="iterate">
<attribute name="target" />
<sequential>
<subant target="@{target}">
<fileset dir="." includes="*/build.xml" excludes="cnf/*" />
</subant>
</sequential>
</macrodef>
<!-- mark __mainiterateinit has been run -->
<property name="__mainiterateinit_done" value="set" />
</target>
<target name="p2">
<ant dir="bndtools.build" target="p2" />
</target>
<target name="build" depends="__mainiterateinit">
<iterate target="build" />
</target>
<target name="junit" depends="__mainiterateinit">
<iterate target="junit" />
</target>
<target name="clean" depends="__mainiterateinit">
<iterate target="clean" />
</target>
<target name="findbugs-prepare">
<exec dir="." executable="./cnf/scripts/fb_generate_includes.bash" osfamily="unix" />
</target>
<target name="findbugs" depends="__mainiterateinit">
<iterate target="findbugs" />
</target>
<target name="wipecache">
<delete dir="${user.home}/.bnd/cache"/>
</target>
</project>