-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
126 lines (103 loc) · 4.64 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
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
124
125
126
<?xml version="1.0" encoding="UTF-8"?>
<project name="manitou-daemon" 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="128m"/>
<patternset id="ignored.files">
<exclude name="**/CVS/**"/>
<exclude name="**/SCCS/**"/>
<exclude name="**/RCS/**"/>
<exclude name="**/rcs/**"/>
<exclude name="**/.DS_Store/**"/>
<exclude name="**/.svn/**"/>
<exclude name="**/.pyc/**"/>
<exclude name="**/.pyo/**"/>
<exclude name="**/*.pyc/**"/>
<exclude name="**/*.pyo/**"/>
<exclude name="**/.git/**"/>
<exclude name="**/*.hprof/**"/>
<exclude name="**/_svn/**"/>
<exclude name="**/.hg/**"/>
<exclude name="**/*.lib/**"/>
<exclude name="**/*~/**"/>
<exclude name="**/__pycache__/**"/>
<exclude name="**/.bundle/**"/>
<exclude name="**/*.o/**"/>
<exclude name="**/*.obj/**"/>
<exclude name="**/*.rbc/**"/>
</patternset>
<patternset id="library.patterns">
<include name="*.war"/>
<include name="*.ear"/>
<include name="*.apk"/>
<include name="*.zip"/>
<include name="*.swc"/>
<include name="*.egg"/>
<include name="*.jar"/>
</patternset>
<patternset id="compiler.resources">
<include name="**/?*.properties"/>
<include name="**/?*.xml"/>
<include name="**/?*.gif"/>
<include name="**/?*.png"/>
<include name="**/?*.jpeg"/>
<include name="**/?*.jpg"/>
<include name="**/?*.html"/>
<include name="**/?*.dtd"/>
<include name="**/?*.tld"/>
<include name="**/?*.ftl"/>
</patternset>
<!-- Project Libraries -->
<path id="library.javamail-1.4.4.classpath">
<pathelement location="${basedir}/ext/lib/javamail-1.4.4.jar"/>
</path>
<path id="library.jcommander-git20120129.classpath">
<pathelement location="${basedir}/ext/lib/jcommander-git20120129.jar"/>
</path>
<path id="library.sqlitejdbc-v056.classpath">
<pathelement location="${basedir}/ext/lib/sqlitejdbc-v056.jar"/>
</path>
<!-- Global Libraries -->
<path id="library.junit4.classpath">
<pathelement location="/usr/share/java/junit4.jar"/>
</path>
<!-- Modules -->
<import file="${basedir}/module_manitou-daemon.xml"/>
<target name="init" description="Build initialization">
<!-- Perform any build initialization in this target -->
</target>
<target name="clean" depends="clean.module.manitou-daemon, clean.artifact.manitoud:jar" description="cleanup all"/>
<target name="build.modules" depends="init, clean, compile.module.manitou-daemon" description="build all modules"/>
<target name="init.artifacts">
<property name="artifacts.temp.dir" value="${basedir}/__artifacts_temp"/>
<property name="artifact.output.manitoud:jar" value="${basedir}/out/artifacts/manitoud_jar"/>
<mkdir dir="${artifacts.temp.dir}"/>
<property name="temp.jar.path.manitou_daemon.jar" value="${artifacts.temp.dir}/manitou_daemon.jar"/>
</target>
<target name="clean.artifact.manitoud:jar" description="clean manitoud:jar artifact output">
<delete dir="${artifact.output.manitoud:jar}"/>
</target>
<target name="artifact.manitoud:jar" depends="init.artifacts, compile.module.manitou-daemon" description="Build 'manitoud:jar' artifact">
<mkdir dir="${artifact.output.manitoud:jar}"/>
<jar destfile="${temp.jar.path.manitou_daemon.jar}" duplicate="preserve" filesetmanifest="mergewithoutmain">
<zipfileset file="${basedir}/src/main/resources/META-INF/MANIFEST.MF" prefix="META-INF"/>
<zipfileset dir="${manitou-daemon.output.dir}"/>
</jar>
<copy file="${temp.jar.path.manitou_daemon.jar}" tofile="${artifact.output.manitoud:jar}/manitou_daemon.jar"/>
<copy file="${basedir}/ext/lib/javamail-1.4.4.jar" tofile="${artifact.output.manitoud:jar}/javamail-1.4.4.jar"/>
<copy file="${basedir}/ext/lib/jcommander-git20120129.jar" tofile="${artifact.output.manitoud:jar}/jcommander-git20120129.jar"/>
<copy file="${basedir}/ext/lib/sqlitejdbc-v056.jar" tofile="${artifact.output.manitoud:jar}/sqlitejdbc-v056.jar"/>
</target>
<target name="build.all.artifacts" depends="artifact.manitoud:jar" description="Build all artifacts">
<!-- Delete temporary files -->
<delete dir="${artifacts.temp.dir}"/>
</target>
<target name="all" depends="build.modules, build.all.artifacts" description="build all"/>
</project>