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

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

have lirk3 change the GLI version numbers

File size: 1.2 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 <!-- set current month and year-->
20 <exec executable="date" outputproperty="current.month"><arg value="+%b"/></exec>
21 <exec executable="date" outputproperty="current.year"><arg value="+%Y"/></exec>
22
23 <!-- for the benefit of the shared scripts, set release-kit home -->
24 <property name="rk.home" value="${lirk3.home}" />
25
26
27 <!-- IMPORT OTHER ANT SCRIPTS -->
28 <import file="shared-ant-scripts/init.xml"/>
29 <import file="compile.xml"/>
30 <import file="create-distribution.xml"/>
31 <import file="create-installer.xml"/>
32 <import file="wrap.xml"/>
33
34 <!-- THE MAIN TARGET -->
35 <target name="lirk3" depends="init">
36 <addressedcall target="compile"/>
37 <addressedcall target="create-distribution"/>
38 <addressedcall target="create-installer"/>
39 <addressedcall target="wrap"/>
40 </target>
41
42</project>
Note: See TracBrowser for help on using the repository browser.