source: release-kits/lirk3/ant-scripts/build.xml@ 16187

Last change on this file since 16187 was 16187, checked in by oranfry, 16 years ago

changes after renaming resources->classes

File size: 1.0 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2
3<!--
4 ..........................................................
5 February 2008
6 Linux Release Kit for Greenstone3 (lirk3)
7 Oran Fry
8 ..........................................................
9-->
10
11<project name="lirk3-build" default="lirk3">
12
13 <!-- CONSTANTS -->
14
15 <!-- the version numbers of bundled things -->
16 <property name="bundled.version.tomcat" value="5.5.25"/>
17 <property name="bundled.version.ant" value="1.6.5"/>
18
19 <!-- for the benefit of the shared scripts, set release-kit home -->
20 <property name="rk.home" value="${lirk3.home}" />
21
22
23 <!-- IMPORT OTHER ANT SCRIPTS -->
24 <import file="shared-ant-scripts/init.xml"/>
25 <import file="compile.xml"/>
26 <import file="create-distribution.xml"/>
27 <import file="create-installer.xml"/>
28 <import file="wrap.xml"/>
29
30 <!-- THE MAIN TARGET -->
31 <target name="lirk3" depends="init">
32 <addressedcall target="compile"/>
33 <addressedcall target="create-distribution"/>
34 <addressedcall target="create-installer"/>
35 <addressedcall target="wrap"/>
36 </target>
37
38</project>
Note: See TracBrowser for help on using the repository browser.