Ignore:
Timestamp:
2008-06-06T11:59:58+12:00 (16 years ago)
Author:
oranfry
Message:

now making use of the SplitResource ant task instead of the split.exe program. also moved all constants to init

File:
1 edited

Legend:

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

    r15691 r15900  
    3131    <property name="basedir.local" refid="basedir.path"/>
    3232
    33     <!-- svn root -->
    34     <property name="svn.root" value="http://svn.greenstone.org"/>
    3533
    3634    <!-- self defined tasks and types-->
     
    4139    <typedef name="addressedcall" classname="TreeCallTarget" classpathref="project.classpath"/>
    4240    <typedef name="rsr" classname="RegexSearchReplace" classpathref="project.classpath"/>
     41    <typedef name="rsplit" classname="SplitResource" classpathref="project.classpath"/>
    4342    <taskdef name="installer" classname="org.tp23.antinstaller.taskdefs.Installer" classpathref="project.classpath"/>
    4443   
     
    4645    <property file="build.properties" />
    4746   
    48     <!-- the version numbers of bundled things -->
     47    <!-- CONSTANTS -->
     48    <property name="resources.chunksize" value="8388608"/><!-- resources split into 8MiB chunks -->
     49    <tempfile property="temp.file" destdir="${java.io.tmpdir}" prefix="delete" suffix=".tmp"/><!-- somewhere to store temporary text -->
     50    <property name="svn.root" value="http://svn.greenstone.org"/><!-- svn root -->
     51    <property name="java.min.version" value="1.5.0_00"/><!-- the minimum java version we require end users to have -->
     52    <property name="java.installer" value="jre-6u3-windows-i586-p-s.exe"/><!-- relative to WIRK3_HOME/wrapper -->
     53
     54    <!-- the version numbers of bundled things (entered manually to save us autodetecting; update as needed) -->
    4955    <property name="bundled.version.java" value="1.6.0_05"/>
    5056    <property name="bundled.version.tomcat" value="5.5.25"/>
    5157    <property name="bundled.version.ant" value="1.6.5"/>
    52 
    53     <!-- somewhere to store temporary text -->
    54     <tempfile property="temp.file" destdir="${java.io.tmpdir}" prefix="delete" suffix=".tmp"/>
    55 
     58       
    5659    <!-- stuff to do before all tasks -->
    5760    <target name="init">
Note: See TracChangeset for help on using the changeset viewer.