forked from BlackLabs/play-morphia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
40 lines (36 loc) · 1.36 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
<?xml version="1.0" encoding="UTF-8"?>
<project name="morphia module" 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="build">
<mkdir dir="tmp/classes" />
<javac srcdir="src" destdir="tmp/classes" source="1.6" target="1.6" bootclasspath="/usr/java/jdk1.6.0_22/jre/lib/rt.jar" debug="true" debuglevel="lines,vars,source">
<classpath refid="project.classpath" />
</javac>
<copy todir="tmp/classes">
<fileset dir="src">
<include name="**/*.properties"/>
<include name="**/*.xml"/>
<include name="**/play.plugins"/>
</fileset>
</copy>
<jar destfile="lib/play-morphia.jar" basedir="tmp/classes">
<manifest>
<section name="Play">
<attribute name="Specification-Title" value="Rythm module"/>
</section>
</manifest>
</jar>
<delete dir="tmp" />
</target>
</project>