-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
29 lines (24 loc) · 947 Bytes
/
build.xml
File metadata and controls
29 lines (24 loc) · 947 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<project
xmlns:ivy="antlib:org.apache.ivy.ant"
name="HAM Analysis"
default="dist"
basedir=".">
<description>
the main build file for the HAM project
</description>
<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">
<!-- 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="${src}/java"/>
<src path="${build}/java"/>
</javac>
</target>
</project>