forked from ScottOaks/JavaPerformanceTuning
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
29 lines (25 loc) · 935 Bytes
/
build.xml
File metadata and controls
29 lines (25 loc) · 935 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
<?xml version="1.0"?>
<project name="StockEar" default="ear">
<property name="stock_api" location="../api/jars/stockapi.jar"/>
<property name="stock_impl" location="../impl/jars/stockimpl.jar"/>
<property name="impl" value="EagerLazyImpl"/>
<target name="build-deps">
<ant dir="StockEar-war" target="war"/>
</target>
<target name="ear" depends="build-deps">
<jar jarfile="jars/StockEar.ear">
<fileset dir="StockEar-ejb/jars" includes="**"/>
<fileset dir="StockEar-war/jars" includes="**"/>
<zipfileset dir="../api/jars" includes="stockapi.jar"
fullpath="lib/stockapi.jar"/>
<zipfileset dir="../impl/jars" includes="stockimpl.jar"
fullpath="lib/stockimpl.jar"/>
</jar>
</target>
<target name="clean">
<delete>
<fileset dir="jars"/>
</delete>
<ant dir="StockEar-war" target="clean"/>
</target>
</project>