Ignore:
Timestamp:
2008-11-07T14:36:58+13:00 (15 years ago)
Author:
oranfry
Message:

shifted the responsibility for the source release to the linux release kit. Made the source release contain a single component with the core and sourcecode mixed together

File:
1 edited

Legend:

Unmodified
Added
Removed
  • release-kits/mark3/installer/build.xml

    r17715 r17786  
    6767    </target>
    6868
    69     <!-- sourcecode core system -->
    70     <target name="Installing Source Code Core">
    71 
    72         <echo>Installing Source Code Core</echo>
    73         <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="sourcecode-core.lzma"/></patternset></unzip>
    74         <sevenzip task="decode" input="${basedir}/sourcecode-core.lzma" output="${basedir}/sourcecode-core.comp"/>
    75         <delete file="sourcecode-core.lzma"/>
    76         <unzip src="${basedir}/sourcecode-core.comp" dest="${installDir}"/>
    77         <delete file="sourcecode-core.comp"/>
    78 
    79         <echo>Setting up global properties</echo>
    80         <copy file="${installDir}/resources/java/global.properties.in" tofile="${installDir}/web/WEB-INF/classes/global.properties" overwrite="true"/>
    81         <rsr file="${installDir}/web/WEB-INF/classes/global.properties" pattern="(.*)@gsdl3home@(.*)" replacement="$1${installDir}/web$2" />
    82         <rsr file="${installDir}/web/WEB-INF/classes/global.properties" pattern="(.*)@tomcat.server@(.*)" replacement="$1localhost$2" />
    83         <rsr file="${installDir}/web/WEB-INF/classes/global.properties" pattern="(.*)@tomcat.port@(.*)" replacement="$1${tomcat.port}$2" />
    84 
    85         <echo>Setting up log4j properties</echo>
    86         <copy file="${installDir}/resources/java/log4j.properties.in" tofile="${installDir}/web/WEB-INF/classes/log4j.properties" overwrite="true"/>
    87         <rsr file="${installDir}/web/WEB-INF/classes/log4j.properties" pattern="(.*)@gsdl3home@(.*)" replacement="$1${installDir}/web$2" />
    88 
    89         <echo>Creating installation properties file</echo>
    90         <echo file="${installDir}/installation.properties">#this file is just a placeholder for now</echo>
    91 
    92 
    93     </target>
    94 
    95 
    96     <!-- Source -->
    97     <target name="Installing Source Code" depends="">
    98         <echo>Installing Source Code</echo>
    99         <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="sourcecode.lzma"/></patternset></unzip>
    100         <sevenzip task="decode" input="${basedir}/sourcecode.lzma" output="${basedir}/sourcecode.comp"/>
    101         <delete file="sourcecode.lzma"/>
    102         <unzip src="${basedir}/sourcecode.comp" dest="${installDir}"/>
    103         <delete file="sourcecode.comp"/>
    104     </target>
    105 
    10669    <target name="Installing Tomcat">
    10770        <echo message="Installing Tomcat (packages/tomcat)"/>
Note: See TracChangeset for help on using the changeset viewer.