blob: 1f143474a2ad493690d3c91f20824aa5bd047c7d (
plain)
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
|
<?xml version="1.0"?>
<project name="jing" default="jar">
<!-- compiles the sources -->
<target name="compile">
<mkdir dir="build" />
<javac srcdir="src"
destdir="build"
source="1.4">
<classpath>
<pathelement path="bin/isorelax.jar:bin/saxon.jar:bin/xerces.jar" />
</classpath>
</javac>
<!-- we need the *.properties at the correct
position in the jar archive! -->
<copy todir="build">
<fileset dir="src">
<include name="**/*.properties" />
</fileset>
</copy>
</target>
<!-- create the jar archive -->
<target name="jar" depends="compile">
<jar jarfile="bin/jing.jar"
basedir="build"
manifest="manifest.mf">
</jar>
</target>
</project>
|