-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbuild.xml
More file actions
28 lines (25 loc) · 1.18 KB
/
build.xml
File metadata and controls
28 lines (25 loc) · 1.18 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
<?xml version="1.0" encoding="UTF-8"?>
<project name="ella" default="build">
<dirname property="ella.dir" file="${ant.file}"/>
<property file="${ella.dir}/ella.settings"/>
<target name="build">
<ant antfile="${ella.dir}/instrument/build.xml" target="jar"
inheritAll="false" useNativeBasedir="true"/>
<ant antfile="${ella.dir}/runtime/build.xml" target="dex"
inheritAll="false" useNativeBasedir="true"/>
<!--ant antfile="${ella.dir}/frontend/build.xml" target="war"
inheritAll="false" useNativeBasedir="true"/-->
<ant antfile="${ella.dir}/server/build.xml" target="jar"
inheritAll="false" useNativeBasedir="true"/>
</target>
<target name="clean">
<ant antfile="${ella.dir}/instrument/build.xml" target="clean"
inheritAll="false" useNativeBasedir="true"/>
<ant antfile="${ella.dir}/runtime/build.xml" target="clean"
inheritAll="false" useNativeBasedir="true"/>
<!--ant antfile="${ella.dir}/frontend/build.xml" target="clean"
inheritAll="false" useNativeBasedir="true"/-->
<ant antfile="${ella.dir}/server/build.xml" target="clean"
inheritAll="false" useNativeBasedir="true"/>
</target>
</project>