forked from ide/gamesman-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
92 lines (90 loc) · 4.08 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
<?xml version="1.0" encoding="UTF-8"?>
<project basedir="." default="build" name="Gamesman-API">
<property environment="env"/>
<property name="debuglevel" value="source,lines,vars"/>
<property name="target" value="1.6"/>
<property name="source" value="1.6"/>
<property name="gapi.src" location="src/java"/>
<property name="gapi.test" location="src/test-java"/>
<property name="gapi.interface" location="src/avro"/>
<property name="gapi.geninterface" location="src/gen-json"/>
<property name="gapi.gensrc" location="src/gen-java"/>
<property name="gapi.war" location="war"/>
<property name="gapi.out" location="${gapi.war}/WEB-INF/classes"/>
<property name="gapi.bin" location="${gapi.out}"/>
<property name="gapi.lib" location="${gapi.war}/WEB-INF/lib"/>
<path id="gapi.classpath">
<pathelement location="${gapi.bin}"/>
<pathelement location="avro-tools-1.4.0.jar"/>
<pathelement location="${gapi.lib}/aopalliance.jar"/>
<pathelement location="${gapi.lib}/asm-3.1.jar"/>
<pathelement location="${gapi.lib}/avro-1.4.0.jar"/>
<pathelement location="${gapi.lib}/guice-2.0.jar"/>
<pathelement location="${gapi.lib}/guice-servlet-2.0.jar"/>
<pathelement location="${gapi.lib}/jersey-core-1.4.jar"/>
<pathelement location="${gapi.lib}/jersey-guice-1.4.jar"/>
<pathelement location="${gapi.lib}/jersey-server-1.4.jar"/>
<pathelement location="${gapi.lib}/jsr311-api-1.1.jar"/>
</path>
<target name="init">
<mkdir dir="${gapi.out}"/>
<mkdir dir="${gapi.gensrc}"/>
<mkdir dir="${gapi.geninterface}"/>
</target>
<target name="clean">
<delete dir="${gapi.out}"/>
<delete file="${gapi.interface}/*.avpr"/>
<delete dir="${gapi.geninterface}"/>
<delete dir="${gapi.gensrc}"/>
</target>
<target name="gen-avro" depends="init">
<apply executable="java" dest="${gapi.geninterface}" failonerror="true">
<arg value="-cp"/>
<arg pathref="gapi.classpath"/>
<arg value="org.apache.avro.tool.Main"/>
<arg value="idl"/>
<srcfile/>
<targetfile/>
<fileset dir="${gapi.interface}" includes="*.avdl"/>
<mapper from="*.avdl" to="*.avpr" type="glob"/>
</apply>
</target>
<target name="avro-java" depends="init,gen-avro">
<apply executable="java" failonerror="true">
<arg value="-cp"/>
<arg pathref="gapi.classpath"/>
<arg value="org.apache.avro.tool.Main"/>
<arg value="compile"/>
<arg value="protocol"/>
<srcfile/>
<arg value="${gapi.gensrc}"/>
<fileset dir="${gapi.geninterface}" includes="*.avpr"/>
</apply>
</target>
<target depends="clean" name="cleanall"/>
<target depends="build-subprojects,build-project" name="build"/>
<target name="build-subprojects"/>
<target depends="init,avro-java" name="build-project">
<!--echo message="${ant.project.name}: ${ant.file}"/-->
<javac debug="true" debuglevel="${debuglevel}" destdir="${gapi.bin}" source="${source}" target="${target}">
<src path="${gapi.test}"/>
<src path="${gapi.gensrc}"/>
<src path="${gapi.src}"/>
<classpath refid="gapi.classpath"/>
</javac>
</target>
<target name="build-refprojects"/>
<target name="init-eclipse-compiler">
<copy todir="${ant.library.dir}">
<fileset dir="${ECLIPSE_HOME}/plugins" includes="org.eclipse.jdt.core_*.jar"/>
</copy>
<unzip dest="${ant.library.dir}">
<patternset includes="jdtCompilerAdapter.jar"/>
<fileset dir="${ECLIPSE_HOME}/plugins" includes="org.eclipse.jdt.core_*.jar"/>
</unzip>
</target>
<target name="build-eclipse-compiler">
<property name="build.compiler" value="org.eclipse.jdt.core.JDTCompilerAdapter"/>
<antcall target="build"/>
</target>
</project>