-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.xml
32 lines (26 loc) · 995 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
<?xml version="1.0" encoding="utf-8" ?>
<project name="Osmosis" default="all" basedir="."
xmlns:ivy="antlib:org.apache.ivy.ant">
<property name="build-support.dir" location="build-support"/>
<import file="${build-support.dir}/script/build-ivy-base.xml"/>
<target name="find-projects" depends="init-ivy" description="Locate all of the sub-projects.">
<ivy:buildlist reference="build-path">
<fileset dir=".">
<include name="**/build.xml"/>
<exclude name="build.xml"/>
</fileset>
</ivy:buildlist>
</target>
<target name="clean" depends="find-projects">
<subant target="clean" buildpathref="build-path" />
</target>
<target name="publish" depends="find-projects">
<subant target="publish" buildpathref="build-path" />
</target>
<target name="test" depends="find-projects">
<subant target="test" buildpathref="build-path" />
</target>
<target name="all" depends="find-projects">
<subant target="all" buildpathref="build-path" />
</target>
</project>