forked from alexeisnyk/juliet-test-suite-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
32 lines (26 loc) · 693 Bytes
/
build.xml
File metadata and controls
32 lines (26 loc) · 693 Bytes
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
<project default="compile">
<macrodef name="cwes">
<attribute name="target" />
<sequential>
<subant target="@{target}">
<fileset dir="src" includes="*/*/build.xml" />
<fileset dir="src" includes="*/*/*/build.xml" />
</subant>
</sequential>
</macrodef>
<target name="clean">
<cwes target="clean" />
</target>
<target name="compile">
<cwes target="compile" />
</target>
<target name="war">
<cwes target="war" />
</target>
<target name="war_with_libs">
<cwes target="war_with_libs" />
</target>
<target name="jar">
<cwes target="jar" />
</target>
</project>