Ignore:
Timestamp:
2008-06-26T11:54:45+12:00 (16 years ago)
Author:
oranfry
Message:

made wirk3 work with the new shared code scheme

File:
1 edited

Legend:

Unmodified
Added
Removed
  • release-kits/wirk3/ant-scripts/build.xml

    r15095 r16198  
    11<?xml version="1.0" encoding="utf-8" ?>
    2 
    32<!--
    43        ..........................................................
    5         September 2007
    6         Greenstone3 'release maker' script
     4        February 2008
     5        Windows Release Kit for greenstone3
    76        Oran Fry
    87        ..........................................................
    98-->
    10 
    119<project name="wirk3-build" default="wirk3">
    1210
    13     <import file="init.xml"/>
     11    <!-- CONSTANTS -->
    1412   
     13    <!-- the size of the resourse chunks to be put in the wrapped installer -->
     14    <property name="resources.chunksize" value="8388608"/><!-- 8MiB -->
     15
     16    <!-- the version numbers of bundled things -->
     17    <property name="bundled.version.tomcat" value="5.5.25"/>
     18    <property name="bundled.version.ant" value="1.6.5"/>
     19
     20    <!-- for the benefit of the shared scripts, set release-kit home -->
     21    <property name="rk.home" value="${wirk3.home}" />
     22
     23    <!-- IMPORT OTHER ANT SCRIPTS -->
     24    <import file="shared-ant-scripts/init.xml"/>
    1525    <import file="compile.xml"/>
    1626    <import file="create-distribution.xml"/>
    1727    <import file="create-installer.xml"/>
    1828    <import file="wrap.xml"/>
    19 
     29   
     30    <!-- THE MAIN TARGET -->
    2031    <target name="wirk3" depends="init">
    21         <echo>Local Basedir: ${basedir.local}</echo>
    22        
    2332        <addressedcall target="compile"/>
    2433        <addressedcall target="create-distribution"/>
Note: See TracChangeset for help on using the changeset viewer.