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

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

using the shared init.xml instead

File size: 1.5 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.java" value="1.6.0_05"/>
17 <property name="bundled.version.tomcat" value="5.5.25"/>
18 <property name="bundled.version.ant" value="1.6.5"/>
19
20 <!-- information about the bundled java (to be changed manually when the bundled version changes) -->
21 <property name="java.installer" value="jre_6u5_tar_gz"/> <!-- set this to the name of the archive in LIRK3_HOME/wrapper. can only contain A-Za-z_ -->
22 <property name="java.extracted" value="jre1.6.0_05"/> <!-- set this to the name of the top level directory in the above archive -->
23 <property name="component.size.java" value="97Mb"/>
24
25 <!-- for the benefit of the shared scripts, set release-kit home -->
26 <property name="rk.home" value="${lirk3.home}" />
27
28
29 <!-- IMPORT OTHER ANT SCRIPTS -->
30 <import file="shared-ant-scripts/init.xml"/>
31 <import file="compile.xml"/>
32 <import file="create-distribution.xml"/>
33 <import file="create-installer.xml"/>
34 <import file="wrap.xml"/>
35
36 <!-- THE MAIN TARGET -->
37 <target name="lirk3" depends="init">
38 <addressedcall target="compile"/>
39 <addressedcall target="create-distribution"/>
40 <addressedcall target="create-installer"/>
41 <addressedcall target="wrap"/>
42 </target>
43
44</project>
Note: See TracBrowser for help on using the repository browser.