-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.xml
39 lines (32 loc) · 881 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
34
35
36
37
38
39
<project name="bsmr" default="master">
<path id="compile.classpath">
<fileset dir="master/jetty-distribution-8.1.0.RC2/lib">
<include name="*.jar"/>
</fileset>
<fileset dir="lib">
<include name="*.jar"/>
</fileset>
</path>
<property name="dest" location="master/bin"/>
<property name="src" location="master/src"/>
<property name="doc" location="master/doc"/>
<target name="master" depends="master-compile,master-javadoc"/>
<target name="master-compile">
<javac srcdir="${src}"
destdir="${dest}"
classpathref="compile.classpath"
debug="on"
source="1.6"
target="1.6"/>
</target>
<target name="master-javadoc">
<mkdir dir="${doc}"/>
<javadoc
sourcepath="${src}"
destdir="${doc}"
windowtitle="BSMR - University of Helsinki"
author="Sampo Savolainen"
classpathref="compile.classpath"
/>
</target>
</project>