-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.xml
63 lines (52 loc) · 1.96 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
<?xml version="1.0"?>
<project name="RockSack" default="main" basedir=".">
<property name="src.dir" location="src" />
<property name="build.dir" location="build" />
<property name="bin.dir" location="bin" />
<property name="docs.dir" location="docs" />
<property name="classpath" value="C://Program Files/Apache/apache-tomcat/lib/"/>
<!-- Classpath for the project -->
<path id="master-classpath">
<fileset dir="${classpath}">
<include name="**/*.jar"/>
</fileset>
</path>
<!-- Deletes the existing build, docs and dist directory-->
<target name="clean">
<delete dir="${build.dir}" />
<!-- <delete dir="${docs.dir}" />-->
<delete dir="${bin.dir}" />
</target>
<!-- Creates the build, docs and dist directory-->
<target name="makedir" depends="clean">
<mkdir dir="${build.dir}" />
<!--<mkdir dir="${docs.dir}" />-->
<mkdir dir="${bin.dir}" />
</target>
<!-- Compiles the java code (including the usage of library for JUnit -->
<target name="compile" depends="makedir">
<javac compiler="modern" srcdir="${src.dir}" destdir="${build.dir}" >
<classpath refid="master-classpath"/>
</javac>
</target>
<target name="copy" depends="jar">
<copy file="${bin.dir}/RockSack.jar" todir="C:/Program Files/Apache/apache-tomcat/lib"/>
</target>
<!-- Creates Javadoc -->
<target name="docs" depends="compile">
<javadoc packagenames="src" sourcepath="${src.dir}" destdir="${docs.dir}">
<!-- Define which files / directory should get included, we include all -->
<fileset dir="${src.dir}">
<include name="**" />
</fileset>
</javadoc>
</target>
<!--Creates the deployable jar file -->
<target name="jar" depends="compile">
<jar destfile="${bin.dir}/RockSack.jar" basedir="${build.dir}" includes="**/com/**" excludes="**/*.java">
</jar>
</target>
<target name="main" depends="jar">
<description>Main target</description>
</target>
</project>