-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.xml
41 lines (38 loc) · 1.49 KB
/
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
33
34
35
36
37
38
39
40
41
<?xml version="1.0"?>
<project name="nexus" default="compile" xmlns:artifact="urn:maven-artifact-ant">
<import file="etc/base-build-support.xml"/>
<!-- hey Ant, how do I iterate over a list in a way that doesn't require an extension? -->
<target name="clean">
<ant dir="core" target="clean"/>
<ant dir="test-support" target="clean"/>
<ant dir="server" target="clean"/>
<ant dir="jvm-io" target="clean"/>
<ant dir="jvm-server" target="clean"/>
<ant dir="gwt-io" target="clean"/>
<ant dir="gwt-server" target="clean"/>
<ant dir="tools" target="clean"/>
<ant dir="demos/chat" target="clean"/>
</target>
<target name="compile">
<ant dir="core" target="compile"/>
<ant dir="test-support" target="compile"/>
<ant dir="server" target="compile"/>
<ant dir="jvm-io" target="compile"/>
<ant dir="jvm-server" target="compile"/>
<ant dir="gwt-io" target="compile"/>
<ant dir="gwt-server" target="compile"/>
<ant dir="tools" target="compile"/>
<ant dir="demos/chat" target="compile"/>
</target>
<target name="install" depends="-init-ooo">
<mavendeploy file="pom.xml" pom="pom.xml"/>
<ant dir="core" target="install"/>
<ant dir="test-support" target="install"/>
<ant dir="server" target="install"/>
<ant dir="jvm-io" target="install"/>
<ant dir="jvm-server" target="install"/>
<ant dir="gwt-io" target="install"/>
<ant dir="gwt-server" target="install"/>
<ant dir="tools" target="install"/>
</target>
</project>