[go: up one dir, main page]

Menu

[f79b81]: / build.xml  Maximize  Restore  History

Download this file

50 lines (41 with data), 1.7 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?xml version = "1.0" encoding = "UTF-8" ?>
<project name = "rat" default = "Main Build" basedir=".">
<dirname file="${ant.file.rat}" property="rat.basedir"/>
<property name = "bin" location = "${rat.basedir}/bin" />
<property name = "jardir" location = "${bin}/dist" />
<property name = "jarfilehost" location = "${jardir}/ratHost.jar" />
<property name = "jarfilemaster" location = "${jardir}/ratMaster.jar" />
<property name = "jarfileproxy" location = "${jardir}/ratProxy.jar" />
<property name = "keystore" location = "../ratproxy/ch/bfh/hti/rat/proxy/keystore" />
<property name = "proxybuildfile" location = "${rat.basedir}/../ratproxy/build.xml" />
<property name = "hostbuildfile" location = "${rat.basedir}/../rathost/build.xml" />
<property name = "masterbuildfile" location = "${rat.basedir}/../ratmaster/build.xml" />
<import file = "${proxybuildfile}"/>
<import file = "${hostbuildfile}" />
<import file = "${masterbuildfile}"/>
<target name = "Main Build" depends = "Ratproxy,RatMaster,RatHost,RatDist">
<echo message = "RAT Build done!" />
</target>
<target name="RatDist">
<delete dir = "${bin}" />
<delete dir = "${jardir}" />
<mkdir dir = "${bin}" />
<mkdir dir = "${jardir}" />
<copy todir = "${jardir}">
<fileset dir="${rat.basedir}/dist">
</fileset>
</copy>
<copy todir = "${jardir}/rathost">
<fileset dir="${rathostjardir}">
</fileset>
</copy>
<copy todir = "${jardir}/ratmaster">
<fileset dir="${ratmasterjardir}">
</fileset>
</copy>
<copy todir = "${jardir}/ratproxy">
<fileset dir="${ratproxyjardir}">
</fileset>
</copy>
</target>
</project>