Changeset 443 in tmcsimulator for trunk/IDE_metadata/NetBeans/TMCSim/build.xml


Ignore:
Timestamp:
07/14/2019 10:21:42 AM (7 years ago)
Author:
jdalbey
Message:

Add unified logger.zip to build.xml.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IDE_metadata/NetBeans/TMCSim/build.xml

    r435 r443  
    155155    <property name="deploy.jar" value="${deploy.dir}/${deploy.jar.name}.jar"/> 
    156156 
    157     <echo message="Packaging ${application.title} into a single JAR at ${deploy.jar}"/> 
     157    <echo message="Packaging ${application.title} components into Jar files in deploy folder."/> 
    158158 
    159159    <delete dir="${deploy.dir}"/> 
     
    172172    </jar> 
    173173 
    174     <zip destfile="${deploy.jar}"> 
     174    <!--zip destfile="${deploy.jar}"> 
    175175        <zipfileset src="${deploy.dir}/temp_final.jar" 
    176176        excludes="META-INF/*.SF, META-INF/*.DSA, META-INF/*.RSA"/> 
    177     </zip> 
     177    </zip--> 
    178178 
    179179    <delete file="${deploy.dir}/temp_final.jar"/> 
     
    216216        </manifest> 
    217217      </jar> 
    218       <!-- Remove the following line when we get CADClient to run 
    219       <delete file="${deploy.dir}/CADClient.jar"/>--> 
    220218 
    221219      <!--                   *** Build Clock Client Only Jar ***         --> 
     
    231229      </jar> 
    232230       
    233       <!--                   *** Console Traffic Driver Only Jar ***         --> 
    234       <jar destfile="${deploy.dir}/ConsoleTrafficDriver.jar" 
    235        basedir="${build.dir}/classes" 
    236        includes="atmsdriver/**, atmsdriver.model/**, tmcsim/common/**" 
    237        excludes="**/Test.class"> 
    238         <zipgroupfileset dir="dist/lib" includes="xercesImpl.jar"/> 
    239         <manifest> 
    240             <attribute name="Main-Class" value="atmsdriver/ConsoleTrafficDriver"/> 
    241         </manifest> 
    242       </jar> 
     231      <!--                ** Unified Logger Zip file **                      --> 
     232      <zip destfile="${deploy.dir}/unifiedlogger.zip" 
     233        basedir="${src.dir}/python/unifiedlogger" 
     234        excludes="**/pyc, **/package.sh, wing_project.wpr"/> 
     235       
    243236      <!--                   *** Traffic Events Animator Only Jar ***         --> 
    244237      <jar destfile="${deploy.dir}/TrafficEventsAnimator.jar" 
     
    263256      </jar> 
    264257      <!--  Set Executable -->  
    265       <chmod file="${deploy.dir}/ShowUserDir.jar" perm="a+x"/> 
    266258      <chmod file="${deploy.dir}/CADserver_r${svna.version}.jar" perm="a+x"/> 
    267259      <chmod file="${deploy.dir}/SimManager_r${svna.version}.jar" perm="a+x"/> 
     260      <chmod file="${deploy.dir}/CADclient_r${svna.version}.jar" perm="a+x"/> 
     261      <chmod file="${deploy.dir}/ClockClient_r${svna.version}.jar" perm="a+x"/> 
     262      <chmod file="${deploy.dir}/TrafficEventsAnimator.jar" perm="a+x"/> 
     263      <chmod file="${deploy.dir}/ShowUserDir.jar" perm="a+x"/> 
     264      <chmod file="${deploy.dir}/unifiedlogger.zip" perm="a+x"/> 
    268265</target> 
    269266 
Note: See TracChangeset for help on using the changeset viewer.