-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
41 lines (36 loc) · 1.37 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" encoding="UTF-8"?>
<!-- ======================================================================
6 aug 2008 13:57:31
project
description
Gerco
====================================================================== -->
<project name="project" default="jar">
<description>
description
</description>
<!-- =================================
target: jar
================================= -->
<target name="jar" description="--> jar">
<mkdir dir="target"/>
<jar destfile="target/esbxref.jar">
<fileset dir="target/classes" includes="nl/progaia/esbxref/launcher/**"/>
<manifest>
<attribute name="Main-Class" value="nl.progaia.esbxref.launcher.Launcher"/>
</manifest>
</jar>
<jar destfile="target/esbxref-core.jar">
<fileset dir="target/classes" excludes="nl/progaia/esbxref/launcher/**"/>
</jar>
</target>
<target name="dist" depends="jar" description="make dist">
<zip destfile="target/esbxref.zip">
<fileset dir="target">
<include name="esbxref.jar"/>
<include name="esbxref-core.jar"/>
</fileset>
<fileset file="MFUtils-1.0-SNAPSHOT.jar"/>
</zip>
</target>
</project>