source: main/trunk/release-kits/kits/rk3/ant-scripts/build.xml@ 21745

Last change on this file since 21745 was 21745, checked in by oranfry, 14 years ago

moving forward property set to greenstone3 shared area

File size: 1.1 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<!--
3 ..........................................................
4 August 2009
5 Release Kit for Greenstone3 (rk3)
6 Oran Fry
7 ..........................................................
8-->
9
10<project name="rk3-build" default="rk3">
11
12 <property name="version.major" value="3"/>
13
14 <!-- IMPORT OTHER ANT SCRIPTS -->
15 <import file="${rk.home}/shared/core/ant-scripts/shared.xml"/>
16 <import file="${rk.home}/shared/greenstone3/ant-scripts/greenstone3-shared.xml"/>
17
18 <import file="compile.xml"/>
19 <import file="${rk.home}/shared/core/ant-scripts/create-installer.xml"/>
20 <import file="${rk.home}/shared/core/ant-scripts/wrap.xml"/>
21
22 <!-- THE MAIN TARGET -->
23 <target name="rk3" depends="init,gs3-init">
24 <antcall target="compile"/>
25 <ant inheritRefs="true" dir="." antfile="${rk.home}/kits/${rk.name}/ant-scripts/create-components.xml" target="create-components"/>
26 <antcall target="create-installer"/>
27 <antcall target="wrap"/>
28 </target>
29
30 <!-- target to show properties in rk3-build.properties -->
31 <target name="properties" depends="core-properties,gs3-properties"/>
32
33</project>
Note: See TracBrowser for help on using the repository browser.