-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheasy-build.xml
More file actions
55 lines (49 loc) · 1.84 KB
/
easy-build.xml
File metadata and controls
55 lines (49 loc) · 1.84 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
51
52
53
54
55
<project name="easy-build" default="help" >
<target name="help" >
<echo>=====================================</echo>
<echo> Build targets </echo>
<echo>=====================================</echo>
<echo>clean - Removes all compiled code and artifacts created during the build process</echo>
<echo>compile - Compiles all source for project </echo>
<echo>test - Runs all tests for project </echo>
<echo>testcc - Runs all tests with code coverage for project </echo>
<echo>package - Creates all deployable artifacts for the project </echo>
</target>
<target name="clean" >
<ant antfile="build.xml" target="clean" inheritall="true" />
</target>
<target name="compile" >
<ant antfile="build.xml" inheritall="true" >
<target name="debug" />
<target name="build" />
</ant>
</target>
<target name="package" >
<ant antfile="build.xml" inheritall="true">
<target name="clean" />
<target name="release" />
<target name="build" />
</ant>
</target>
<target name="test" >
<ant antfile="build.xml" inheritall="true" >
<target name="clean" />
<target name="release" />
<target name="build" />
<target name="test-on-emulator" />
<target name="check-test-report" />
<!-- should probable be next target instead? -->
<!-- target name="test-on-all-emulators" / -->
</ant>
</target>
<target name="testcc" >
<ant antfile="build.xml" inheritall="true" >
<target name="clean" />
<target name="instrument" />
<target name="build" />
<target name="test-on-emulator" />
<target name="check-test-report" />
<target name="check-code-coverage" />
</ant>
</target>
</project>