Changeset 126 in tmcsimulator-scriptbuilder for trunk/build.xml


Ignore:
Timestamp:
09/26/2017 11:59:25 AM (9 years ago)
Author:
jdalbey
Message:

build.xml: Added target "zip" to create a distributable zip file.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/build.xml

    r125 r126  
    7272 
    7373    </target> 
     74  <!-- =================================================================== --> 
     75  <!-- Make zip file for distribution that contains Jar and Incidents      --> 
     76  <!-- =================================================================== --> 
     77  <target name="zip" depends="package-jars" description="Make zip file"> 
     78        <property name="deploy.dir" value="deploy"/> 
     79    <zip destfile="${deploy.dir}/ScriptBuilder.zip"> 
     80    <zipfileset      
     81         dir="${deploy.dir}" 
     82         includes="**.jar" 
     83         filemode="755" 
     84    /> 
     85    </zip> 
     86    <zip destfile="${deploy.dir}/ScriptBuilder.zip" 
     87         basedir="." 
     88         includes="Incidents/**" 
     89         update="true" 
     90    /> 
     91  </target> 
    7492</project> 
Note: See TracChangeset for help on using the changeset viewer.