Changeset 200


Ignore:
Timestamp:
Nov 21, 2006, 2:05:04 PM (16 years ago)
Author:
Johan Enell
Message:

added targets for ztest

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/se/lu/onk/build.xml

    r196 r200  
    3131  <property name="smooth.src" location="Smooth/src" />
    3232  <property name="gominer.src" location="GoMiner/src" />
     33  <property name="ztest.src" location="ZTest/src" />
    3334
    3435  <!-- bin -->
     
    4445  <property name="smooth.bin" location="${bin}/Smooth" />
    4546  <property name="gominer.bin" location="${bin}/GoMiner" />
     47  <property name="ztest.bin" location="${bin}/ZTest" />
    4648
    4749  <!-- dist -->
     
    214216      />
    215217    </target>
     218 
     219  <!-- - - - - - - - - - - - - - - - - -
     220      target: ztest.compile
     221     - - - - - - - - - - - - - - - - - -->
     222    <target name="ztest.compile" depends="basefile.compile">
     223      <mkdir dir="${ztest.bin}"/>
     224      <javac
     225        srcdir="${ztest.src}"
     226        destdir="${ztest.bin}"
     227        classpath="${basefile.bin}"
     228        debug="true"
     229        deprecation="true"
     230        encoding="ISO-8859-1"
     231      />
     232    </target>
     233
    216234
    217235
     
    381399        <manifest>
    382400          <attribute name="Built-By" value="${user.name}"/>
    383           <attribute name="Main-Class" value="et.sf.basedb.plugin.gominer.GoMinerExport"/>
    384         </manifest>
    385     </jar>
    386   </target>
     401          <attribute name="Main-Class" value="net.sf.basedb.plugin.gominer.GoMinerExport"/>
     402        </manifest>
     403    </jar>
     404  </target>
     405 
     406  <!-- - - - - - - - - - - - - - - - - -
     407      target: ztest.dist                     
     408     - - - - - - - - - - - - - - - - - -->
     409  <target name="ztest.dist" depends="ztest.compile">
     410    <mkdir dir="${dist}" />
     411    <jar destfile="${dist}/ztest.jar">
     412      <fileset dir="${basefile.src}" />
     413      <fileset dir="${basefile.bin}" />
     414      <fileset dir="${ztest.bin}" />
     415      <fileset dir="${ztest.src}" />
     416        <manifest>
     417          <attribute name="Built-By" value="${user.name}"/>
     418          <attribute name="Main-Class" value="net.sf.basedb.plugin.ztest.Start"/>
     419        </manifest>
     420    </jar>
     421  </target>
     422 
    387423 
    388424  <!-- =================================
Note: See TracChangeset for help on using the changeset viewer.