-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
28 lines (23 loc) · 1.02 KB
/
build.xml
File metadata and controls
28 lines (23 loc) · 1.02 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<project
xmlns:ivy="antlib:org.apache.ivy.ant"
name="rjava-conf-schema"
default="dist"
basedir=".">
<import file="build-properties.xml"/>
<import file="${common.build.dir}/build-common.xml"/>
<target name="compile-nodeps" depends="ivy-retrieve,schema-to-java" description="compile the source">
<!-- Run a dependancy check on all of the java classes -->
<mkdir dir="${dependcache}"/>
<depend srcdir="${src}/java" destdir="${build}/classes" cache="${dependcache}" closure="yes"/>
<!-- Compile the java code from ${src} into ${build}/classes -->
<mkdir dir="${build}/classes"/>
<javac destdir="${build}/classes" target="1.5" source="1.5" deprecation="true" classpathref="proj.classpath" debug="true">
<!--
<compilerarg value="-Xlint"/>
<compilerarg value="-Xlint:-serial"/>
-->
<src path="${build}/java"/>
</javac>
</target>
</project>