Ignore:
Timestamp:
2008-08-15T15:20:32+12:00 (16 years ago)
Author:
oranfry
Message:

fixed installer sourcecode target, use shared code from rk2 targets and show compnent sizes in wirk2

File:
1 edited

Legend:

Unmodified
Added
Removed
  • release-kits/wirk2/ant-scripts/create-installer.xml

    r16745 r16817  
    33
    44    <target name="create-installer">
    5         <antcall target="setup-for-installer-creation"/>
     5        <antcall target="copy-installer-files"/>
     6        <antcall target="make-installer-files-concrete"/> <!-- from rk2-targets -->
    67        <antcall target="compile-installer"/>
    78    </target>
    89
    9     <target name="setup-for-installer-creation">
     10    <target name="copy-installer-files">
     11        <echo>Copying installer files</echo>
    1012        <mkdir dir="${basedir}/installer/classes"/>
    1113        <copy todir="${basedir}/installer" file="${wirk2.home}/installer/antinstall-config.xml" overwrite="true"/>
     
    1618            <fileset dir="${wirk2.home}/ant-scripts/tasks/orans" includes="RegexSearchReplace.class" />
    1719        </copy>
    18        
    19         <!-- put the concrete values of things in the config -->
    20         <rsr file="${basedir}/installer/antinstall-config.xml" pattern="@version@" replacement="${version}"/>
    21         <rsr file="${basedir}/installer/build.xml" pattern="@version@" replacement="${version}"/>
    22                                
    23         <!-- put the concrete values of things in the text -->
    24         <!-- default -->
    25         <rsr file="${basedir}/installer/classes/resources/LanguagePack.properties" pattern="@version@" replacement="${version}"/>
    26         <rsr file="${basedir}/installer/classes/resources/LanguagePack.properties" pattern="@java.min.version@" replacement="${java.min.version}"/>
    27         <rsr file="${basedir}/installer/classes/resources/LanguagePack.properties" pattern="@bundled.version.java@" replacement="${bundled.version.windows-java}"/>
    28         <rsr file="${basedir}/installer/classes/resources/LanguagePack.properties" pattern="@bundled.version.tomcat@" replacement="${bundled.version.tomcat}"/>
    29         <rsr file="${basedir}/installer/classes/resources/LanguagePack.properties" pattern="@bundled.version.ant@" replacement="${bundled.version.ant}"/>
    30        
    31         <!-- chinese -->
    32         <rsr file="${basedir}/installer/classes/resources/LanguagePack_zh_CN.properties" pattern="@version@" replacement="${version}"/>
    33         <rsr file="${basedir}/installer/classes/resources/LanguagePack_zh_CN.properties" pattern="@java.min.version@" replacement="${java.min.version}"/>
    34         <rsr file="${basedir}/installer/classes/resources/LanguagePack_zh_CN.properties" pattern="@bundled.version.java@" replacement="${bundled.version.windows-java}"/>
    35         <rsr file="${basedir}/installer/classes/resources/LanguagePack_zh_CN.properties" pattern="@bundled.version.tomcat@" replacement="${bundled.version.tomcat}"/>
    36         <rsr file="${basedir}/installer/classes/resources/LanguagePack_zh_CN.properties" pattern="@bundled.version.ant@" replacement="${bundled.version.ant}"/>
    3720    </target>
    3821
Note: See TracChangeset for help on using the changeset viewer.