source: release-kits/rk2/ant-scripts/build.xml@ 20721

Last change on this file since 20721 was 20721, checked in by oranfry, 15 years ago

created the merged rk2

File size: 1.6 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<!--
3 ..........................................................
4 September 2009
5 Release Kit for Greenstone2 (rk2)
6 Oran Fry
7 ..........................................................
8-->
9
10<project name="rk2-build" default="rk2">
11
12 <!-- CONSTANTS -->
13
14 <!-- for the benefit of the shared scripts, set release-kit home -->
15 <property name="rk.name" value="rk2"/>
16 <property name="rk.home" value="${rk2.home}" />
17
18 <!-- IMPORT OTHER ANT SCRIPTS -->
19 <import file="../core/ant-scripts/init.xml"/>
20 <import file="../core/ant-scripts/operations-on-gli.xml"/>
21 <import file="../greenstone2/ant-scripts/rk2-targets.xml"/>
22
23 <import file="compile.xml"/>
24 <import file="create-distribution.xml"/>
25 <import file="create-components.xml"/>
26 <import file="create-installer.xml"/>
27 <import file="wrap.xml"/>
28 <import file="create-cdrom-components.xml"/>
29
30 <!-- THE MAIN TARGET -->
31 <target name="rk2" depends="init,gs2-init">
32 <antcall target="compile"/>
33 <antcall target="create-distribution"/>
34 <antcall target="create-components"/>
35 <antcall target="create-installer"/>
36 <antcall target="wrap"/>
37 <antcall target="create-cdrom-components"/>
38 </target>
39
40 <target name="properties">
41 <echo>Required Properties:</echo>
42 <echo>version the version string for the release</echo>
43 <echo/>
44 <echo>Optional Properties:</echo>
45 <echo>branch.path the branch of Greenstone3 to make a release of. Eg: tags/2.81. Default: trunk.</echo>
46 <echo>branch.revision the revision of Greenstone3 to make a release of. Eg: 18273. Default: HEAD.</echo>
47 <echo/>
48 </target>
49
50</project>
Note: See TracBrowser for help on using the repository browser.