This repository has been archived by the owner on Nov 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
64 lines (51 loc) · 2.06 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<project name="B2P-Penicillin" basedir="." default="test">
<property name="src.dir" value="src"/>
<property name="galassi.dir" value="AGalassi"/>
<property name="build.dir" value="build"/>
<property name="classes.dir" value="${build.dir}/classes"/>
<property name="jar.dir" value="${build.dir}/jar"/>
<property name="lib.dir" value="lib"/>
<path id="classpath">
<fileset dir="${lib.dir}" includes="**/*.jar"/>
</path>
<property name="main-class" value="b2p.Main"/>
<target name="clean">
<delete dir="${build.dir}"/>
</target>
<target name="compile">
<mkdir dir="${classes.dir}"/>
<javac destdir="${classes.dir}" classpathref="classpath" includeantruntime="false">
<src path="${src.dir}"/>
<!-- <src path="${lib.dir}"/>-->
<src path="${galassi.dir}"/>
</javac>
</target>
<path id="classPath">
<pathelement location="${lib.dir}/junit-jupiter-5.4.2.jar" />
</path>
<target name="jar" depends="compile">
<mkdir dir="${jar.dir}"/>
<jar destfile="${jar.dir}/${ant.project.name}.jar" basedir="${classes.dir}" >
<zipgroupfileset dir="lib" includes="gson-2.2.2.jar" />
<manifest>
<attribute name="Main-Class" value="${main-class}"/>
</manifest>
</jar>
</target>
<target name="run" depends="jar">
<java jar="${jar.dir}/${ant.project.name}.jar" fork="true"/>
</target>
<target name="clean-build" depends="clean,jar"/>
<target name="main" depends="clean,run"/>
<target name="test" depends="clean-build">
<junit printsummary="yes" haltonfailure="yes">
<classpath refid="classpath" />
<classpath>
<pathelement location="${build.dir}/jar/B2P-Penicillin.jar" />
</classpath>
<batchtest fork="no">
<zipfileset src="${build.dir}/jar/B2P-Penicillin.jar" includes="**/test/*Test.class" />
</batchtest>
</junit>
</target>
</project>