-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.xml
37 lines (36 loc) · 1.31 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
<project name="MyWebApplication" basedir="." default="deploy">
<target name="clean">
<subant failonerror="false">
<fileset dir="." includes="travelbook-seam-ejb3/build.xml" excludes="build.xml"/>
<target name="clean"/>
</subant>
<subant failonerror="false">
<fileset dir="." includes="travelbook-seam-web/build.xml" excludes="build.xml"/>
<target name="clean"/>
</subant>
</target>
<target name="build-ejb">
<subant failonerror="false">
<fileset dir="." includes="travelbook-seam-ejb3/build.xml" excludes="build.xml"/>
<target name="install"/>
</subant>
</target>
<target name="deploy.tomcat" depends="build-ejb">
<subant failonerror="false">
<fileset dir="." includes="travelbook-seam-web/build.xml" excludes="build.xml"/>
<target name="install"/>
</subant>
</target>
<target name="jboss.war" depends="build-ejb">
<subant failonerror="false">
<fileset dir="." includes="travelbook-seam-web/build.xml" excludes="build.xml"/>
<target name="jboss.war"/>
</subant>
</target>
<target name="deploy" depends="jboss.war">
<subant failonerror="false">
<fileset dir="." includes="travelbook-seam-ear/build.xml" excludes="build.xml"/>
<target name="deploy"/>
</subant>
</target>
</project>