-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
30 lines (25 loc) · 845 Bytes
/
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
<project name="Subtyping" default="compile">
<path id="build-classpath">
<fileset dir="lib/">
<include name="*.jar"/>
</fileset>
</path>
<target name="compile">
<mkdir dir="bin/"/>
<javac srcdir="src" destdir="bin" includeAntRuntime="false" debug="true">
<classpath refid="build-classpath"/>
</javac>
</target>
<target name="clean">
<delete dir="bin"/>
<delete dir="build"/>
</target>
<target name="jar" depends="compile">
<mkdir dir="build"/>
<jar destfile="build/BehaviouralSubtype.jar">
<fileset dir="bin/" includes="**/*.class"></fileset>
<fileset dir="." includes="META-INF/**"></fileset>
<zipgroupfileset dir="lib" includes="*.jar"/>
</jar>
</target>
</project>