-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild-jars.xml
28 lines (24 loc) · 1015 Bytes
/
build-jars.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
<?eclipse.ant.import?>
<project basedir="." default="build-all-jars" name="build-jars">
<property name="file.jar" value="jta-plugins.jar"/>
<property name="bin.base" value="./build/bin"/>
<property name="jar.output" value="./dist"/>
<target name="clean-jars">
<delete dir="${jar.output}"/>
</target>
<target name="init-jars">
<mkdir dir="${jar.output}"/>
</target>
<target depends="create-jtaplugins-jar" name="build-all-jars"/>
<target description="Create a jar file for the Performance Monitoring Application" depends="clean-jars,init-jars" name="create-jtaplugins-jar">
<jar destfile="${jar.output}/${file.jar}">
<fileset dir="${bin.base}" includes="*/**" />
<fileset dir="." includes="res/**" />
<manifest>
<attribute name="Built-By" value="Alcatel-Lucent Spa"/>
<attribute name="Implementation-Vendor" value="Alcatel-Lucent Spa"/>
<attribute name="Implementation-Version" value="2.0"/>
</manifest>
</jar>
</target>
</project>