This repository has been archived by the owner on Aug 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.xml
58 lines (51 loc) · 2.29 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
<project name="liberty-way" basedir="." default="main">
<property name="dir.main" value="."/>
<property name="dir.src" value="src"/>
<property name="dir.build" value="build"/>
<property name="dir.utilities" value="lib"/>
<property name="dir.classes" value="${dir.build}/classes"/>
<property name="dir.jar" value="${dir.build}/jar"/>
<property name="main-class" value="com.liberty_amls.Main"/>
<presetdef name="javac">
<javac includeantruntime="false"/>
</presetdef>
<target name="clean">
<delete dir="${dir.build}"/>
</target>
<target name="compile">
<mkdir dir="${dir.classes}"/>
<copy todir="${dir.classes}" >
<fileset dir="${dir.src}" includes="**"/>
</copy>
<javac srcdir="${dir.src}" destdir="${dir.classes}">
<classpath>
<pathelement path="${dir.utilities}/jSerialComm-2.6.2.jar"/>
<pathelement path="${dir.utilities}/gson-2.8.6.jar"/>
<pathelement path="${dir.utilities}/commons-cli-1.4.jar"/>
<pathelement path="${dir.utilities}/flak-api-1.2.0.jar"/>
<pathelement path="${dir.utilities}/flak-backend-jdk-1.2.0.jar"/>
<pathelement path="${dir.utilities}/flak-resource-1.2.0.jar"/>
<pathelement path="${dir.utilities}/flak-spi-1.2.0.jar"/>
<pathelement path="${dir.utilities}/log4j-1.2.17.jar"/>
<pathelement path="${dir.utilities}/opencv-453.jar"/>
</classpath>
</javac>
</target>
<target name="jar" depends="compile">
<mkdir dir="${dir.jar}"/>
<jar destfile="${dir.jar}/${ant.project.name}.jar" basedir="${dir.classes}">
<zipgroupfileset includes="*.jar" dir="${dir.utilities}"/>
<manifest>
<attribute name="Main-Class" value="${main-class}"/>
</manifest>
</jar>
</target>
<target name="run" depends="jar">
<copy todir="${dir.jar}" >
<fileset dir="${dir.main}" includes="**"/>
</copy>
<java jar="${dir.jar}/${ant.project.name}.jar" fork="true"/>
</target>
<target name="clean-build" depends="clean,jar"/>
<target name="main" depends="clean,compile,jar"/>
</project>