forked from guillaumebort/play-gae
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
60 lines (52 loc) · 2.04 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
<?xml version="1.0" encoding="UTF-8"?>
<project name="Google App Engine" default="build" basedir=".">
<path id="project.classpath">
<pathelement path="${play.path}/framework/classes"/>
<fileset dir="${play.path}/framework">
<include name="*.jar"/>
</fileset>
<fileset dir="${play.path}/framework/lib">
<include name="*.jar"/>
</fileset>
<fileset dir="lib">
<include name="*.jar"/>
</fileset>
</path>
<target name="checkVersion">
<condition property="java6">
<matches pattern="1.6" string="${ant.java.version}"/>
</condition>
</target>
<target name="build" depends="compile-java6,compile-java5">
<copy todir="tmp/classes">
<fileset dir="src">
<include name="**/*.properties"/>
<include name="**/*.xml"/>
<include name="**/play.plugins"/>
<include name="**/play.static"/>
</fileset>
</copy>
<jar destfile="lib/play-gae.jar" basedir="tmp/classes">
<manifest>
<section name="Play">
<attribute name="Specification-Title" value="Google App Engine module"/>
</section>
</manifest>
</jar>
<delete dir="tmp" />
</target>
<target name="compile-java6" depends="checkVersion" if="java6">
<echo>Disabling annotation processing</echo>
<mkdir dir="tmp/classes" />
<javac srcdir="src" destdir="tmp/classes" target="1.5" debug="true">
<classpath refid="project.classpath" />
<compilerarg value="-proc:none" />
</javac>
</target>
<target name="compile-java5" depends="checkVersion" unless="java6">
<mkdir dir="tmp/classes" />
<javac srcdir="src" destdir="tmp/classes" target="1.5" debug="true">
<classpath refid="project.classpath" />
</javac>
</target>
</project>