Changeset 6 in tmcsimulator for trunk/IDE_metadata/NetBeans/TMCSim/build.xml
- Timestamp:
- 04/20/2016 02:29:52 PM (10 years ago)
- File:
-
- 1 edited
-
trunk/IDE_metadata/NetBeans/TMCSim/build.xml (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/IDE_metadata/NetBeans/TMCSim/build.xml
r2 r6 11 11 <description>Builds, tests, and runs the project TMCSim.</description> 12 12 <import file="nbproject/build-impl.xml"/> 13 <property name="workdir" value="../../.."/> 14 <!-- 13 <property name="workdir" value="../../.."/> 14 <!-- STORE SUBVERSION BUILD STRING --> 15 <!-- Store the Subversion version string every time you do clean/build. --> 16 <target name="-pre-compile"> 17 <exec executable="svnversion" 18 output="${workdir}/config/svn-version.txt"/> 19 <echo file="${workdir}/config/svn-version.txt" append="true"> 20 # Do not edit. This file is autogenerated by the Ant build script # 21 </echo> 22 </target> 23 <!-- 15 24 ================= 16 25 LOC counter 17 26 ================= 18 -->27 --> 19 28 <target description="Count Lines of Code in src directory." name="loc"> 20 29 <java classname="textui.LOC" … … 42 51 PACKAGE JARS SECTION 43 52 ================= 44 -->53 --> 45 54 <target name="package-jars" depends="jar"> 46 55 47 56 <!-- *** Build a jar with everything *** --> 48 <property name="deploy.jar.name" value=" Sim305"/>57 <property name="deploy.jar.name" value="TMCSimAll"/> 49 58 <property name="deploy.dir" value="deploy"/> 50 59 <property name="deploy.jar" value="${deploy.dir}/${deploy.jar.name}.jar"/> … … 75 84 <jar destfile="${deploy.dir}/CADserver.jar" 76 85 basedir="${build.dir}/classes" 77 includes="tmcsim/cadsimulator/**, tmcsim/common/**" 86 includes="tmcsim/cadsimulator/**, tmcsim/common/**, tmcsim/interfaces/**, 87 tmcsim/client/cadclientgui/**, tmcsim/cadmodels/**" 78 88 excludes="**/Test.class"> 79 89 <manifest> … … 85 95 <jar destfile="${deploy.dir}/SimManager.jar" 86 96 basedir="${build.dir}/classes" 87 includes="tmcsim/simulationmanager/**, tmcsim/common/**" 97 includes="tmcsim/simulationmanager/**, tmcsim/common/**, tmcsim/cadmodels/**, 98 tmcsim/client/cadclientgui/**, tmcsim/interfaces/**" 88 99 excludes="**/Test.class"> 89 100 <manifest> … … 91 102 </manifest> 92 103 </jar> 93 104 94 105 <!-- *** Build CAD Client Only Jar *** --> 95 <jar destfile="${deploy.dir}/CADClient.jar" filesetmanifest="skip"106 <jar destfile="${deploy.dir}/CADClient.jar" 96 107 basedir="${build.dir}/classes" 97 includes="tmcsim/client/**, tmcsim/common/**, tmcsim/interfaces/**"> 108 includes="tmcsim/client/**, tmcsim/common/**, tmcsim/interfaces/**, 109 tmcsim/cadmodels/**"> 98 110 <manifest> 99 111 <attribute name="Main-Class" value="tmcsim.client.CADClient"/> 112 </manifest> 113 </jar> 114 <!-- Remove the following line when we get CADClient to run 115 <delete file="${deploy.dir}/CADClient.jar"/>--> 116 117 <!-- *** Build Paramics Communicator Only Jar *** --> 118 <jar destfile="${deploy.dir}/ParamicsCommunicator.jar" 119 basedir="${build.dir}/classes" 120 includes="tmcsim/paramicscommunicator/**, tmcsim/common/**" 121 excludes="**/Test.class"> 122 <manifest> 123 <attribute name="Main-Class" value="tmcsim.paramicscommunicator.ParamicsCommunicator"/> 100 124 </manifest> 101 125 </jar>
Note: See TracChangeset
for help on using the changeset viewer.
