-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.xml
33 lines (24 loc) · 889 Bytes
/
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
<project name="build" default="build.project">
<property name="ant.build.javac.target" value="1.6" />
<property name="ant.build.javac.source" value="1.6" />
<property file="${buildtools.dir}/settings.properties" />
<target name="clean">
<delete dir="${build.outdir}" failonerror="false" />
</target>
<target name="init">
<tstamp />
<mkdir dir="${build.outdir}" />
</target>
<target name="compile" depends="init">
<copy todir="${compile.outdir}">
<fileset dir="${resources.dir}"/>
</copy>
<javac srcdir="${src.dir}" destdir="${compile.outdir}" classpathref="build.classpath" debug="true" />
</target>
<target name="build.project" depends="clean, compile, compile-test, test">
</target>
<import file="build-properties.xml"/>
<import file="build-groovy.xml"/>
<import file="build-test.xml"/>
<import file="build-sonar.xml"/>
</project>