-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
123 lines (105 loc) · 4.16 KB
/
Copy pathbuild.xml
File metadata and controls
123 lines (105 loc) · 4.16 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<?xml version="1.0" encoding="UTF-8"?>
<project name="techthetown-highlevel" default="all">
<property file="build.properties"/>
<!-- Uncomment the following property if no tests compilation is needed -->
<!--
<property name="skip.tests" value="true"/>
-->
<!-- Compiler options -->
<property name="compiler.debug" value="on"/>
<property name="compiler.generate.no.warnings" value="off"/>
<property name="compiler.args" value=""/>
<property name="compiler.max.memory" value="700m"/>
<patternset id="ignored.files">
<exclude name="**/*.hprof/**"/>
<exclude name="**/*.pyc/**"/>
<exclude name="**/*.pyo/**"/>
<exclude name="**/*.rbc/**"/>
<exclude name="**/*.yarb/**"/>
<exclude name="**/*~/**"/>
<exclude name="**/.DS_Store/**"/>
<exclude name="**/.git/**"/>
<exclude name="**/.hg/**"/>
<exclude name="**/.svn/**"/>
<exclude name="**/CVS/**"/>
<exclude name="**/__pycache__/**"/>
<exclude name="**/_svn/**"/>
<exclude name="**/vssver.scc/**"/>
<exclude name="**/vssver2.scc/**"/>
</patternset>
<patternset id="library.patterns">
<include name="*.egg"/>
<include name="*.jar"/>
<include name="*.ear"/>
<include name="*.swc"/>
<include name="*.war"/>
<include name="*.ane"/>
<include name="*.zip"/>
</patternset>
<patternset id="compiler.resources">
<exclude name="**/?*.java"/>
<exclude name="**/?*.form"/>
<exclude name="**/?*.class"/>
<exclude name="**/?*.groovy"/>
<exclude name="**/?*.scala"/>
<exclude name="**/?*.flex"/>
<exclude name="**/?*.kt"/>
<exclude name="**/?*.clj"/>
<exclude name="**/?*.aj"/>
</patternset>
<!-- Project Libraries -->
<path id="library.lib.classpath">
<pathelement location="${basedir}/lib/Jama-1.0.2.jar"/>
<pathelement location="${basedir}/lib/config-1.3.jar"/>
<pathelement location="${basedir}/lib/hamcrest-core-1.3.jar"/>
<pathelement location="${basedir}/lib/ini4j-0.5.1.jar"/>
<pathelement location="${basedir}/lib/jcommon-1.0.13.jar"/>
<pathelement location="${basedir}/lib/jfreechart-1.0.13.jar"/>
<pathelement location="${basedir}/lib/junit-4.12.jar"/>
<pathelement location="${basedir}/lib/opencv-340.jar"/>
</path>
<!-- Modules -->
<import file="${basedir}/module_techthetown-highlevel.xml"/>
<target name="init" description="Build initialization">
<!-- Perform any build initialization in this target -->
</target>
<target name="clean" depends="clean.module.techthetown-highlevel" description="cleanup all"/>
<target name="build.modules" depends="init, clean, compile.module.techthetown-highlevel" description="build all modules"/>
<target name="all" depends="build.modules" description="build all"/>
<target name="jar" depends="all">
<delete file="techthetown-highlevel.jar"/>
<jar destfile="techthetown-highlevel.jar" basedir="${techthetown-highlevel.output.dir}">
<manifest>
<attribute name="Main-Class" value="Main"/>
</manifest>
<zipgroupfileset dir="${basedir}/lib" includes="**/*.jar"/>
</jar>
</target>
<target name="pattern" depends="all">
<delete file="Ptechthetown-highlevel.jar"/>
<jar destfile="Ptechthetown-highlevel.jar" basedir="${techthetown-highlevel.output.dir}">
<manifest>
<attribute name="Main-Class" value="MainPattern"/>
</manifest>
<zipgroupfileset dir="${basedir}/lib" includes="**/*.jar"/>
</jar>
</target>
<target name="ia" depends="all">
<delete file="Atechthetown-highlevel.jar"/>
<jar destfile="Atechthetown-highlevel.jar" basedir="${techthetown-highlevel.output.dir}">
<manifest>
<attribute name="Main-Class" value="MainIA"/>
</manifest>
<zipgroupfileset dir="${basedir}/lib" includes="**/*.jar"/>
</jar>
</target>
<target name="homologation" depends="all">
<delete file="Htechthetown-highlevel.jar"/>
<jar destfile="Htechthetown-highlevel.jar" basedir="${techthetown-highlevel.output.dir}">
<manifest>
<attribute name="Main-Class" value="MainHomologation"/>
</manifest>
<zipgroupfileset dir="${basedir}/lib" includes="**/*.jar"/>
</jar>
</target>
</project>