forked from agiamas/mongo-jdbc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
83 lines (67 loc) · 2.02 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
<?xml version='1.0'?>
<project name="MongoJDBC" default="compile" basedir=".">
<property name="version" value="0.1"/>
<path id="classpath">
<fileset dir="lib">
<include name="**/*.jar"/>
</fileset>
<pathelement path="conf" />
<pathelement path="build/main" />
<pathelement path="build/test" />
</path>
<target name="init">
<mkdir dir="build" />
<mkdir dir="build/main" />
<mkdir dir="build/test" />
</target>
<target name="clean">
<delete dir="build"/>
</target>
<target name="compile" depends="init">
<javac srcdir="src/main"
destdir="build/main"
optimize="off"
deprecation="off"
source="1.5"
target="1.5"
encoding="ISO-8859-1"
memoryMaximumSize="256M"
fork="true"
debug="on" >
<classpath refid="classpath"/>
</javac>
<javac srcdir="src/test"
destdir="build/test"
optimize="off"
deprecation="off"
source="1.5"
encoding="ISO-8859-1"
debug="on" >
<classpath refid="classpath"/>
</javac>
</target>
<target name="jar" depends="compile" description="Create jdbc jar">
<exec executable="git" output="build/main/git-hash">
<arg value="log" />
<arg value="--pretty=format:%H" />
<arg value="-1" />
</exec>
<jar jarfile="mongojdbc.jar" >
<fileset dir="build/main" />
</jar>
</target>
<!-- - - - - - - - - - - - - - - - - - - - - - -->
<!-- test stuff -->
<!-- - - - - - - - - - - - - - - - - - - - - - -->
<taskdef name="testng"
classpathref="classpath"
classname="org.testng.TestNGAntTask"
>
</taskdef>
<target name="test" depends="compile">
<testng classpathref="classpath" outputdir="testoutput" listeners="com.mongodb.util.TestNGListener" haltonfailure="true" >
<jvmarg value="-Xmx512M" />
<xmlfileset dir="." includes="testng.xml"/>
</testng>
</target>
</project>