Ignore:
Timestamp:
2010-03-24T17:30:25+13:00 (14 years ago)
Author:
ak19
Message:

Added the ant target dlservicesjar.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • other-projects/gs3-webservices-java-client/trunk/build.xml

    r21525 r21811  
    5858    <echo>- ant QBRdatajar</echo>
    5959    <echo>  for generating the QBRdata.jar dependency file</echo>
     60        <echo>- ant DLservicesjar</echo>
     61    <echo>  for generating the DLservices.jar standalone library</echo>
    6062    <echo>- ant make-dist</echo>
    6163    <echo>  for generating the zip/gzip/bzip file of the project</echo>
     
    117119    <fileset file="${basedir}/lib/fedoraGS3.jar"/>
    118120    <fileset file="${basedir}/lib/QBRdata.jar"/>
     121    <fileset file="${basedir}/lib/DLservices.jar"/>
    119122    <fileset file="${basedir}/${exec.jar.name}"/>
    120123    <fileset file="${basedir}/gs3democlient.properties"/>
     
    203206</target>
    204207
     208<!-- Target to generate the standalone (reusable) jar files DLservices.jar -->
     209<target name="DLservicesjar" description="Compiles and creates the DLservices.jar standalone, reusable library file">
     210   <javac srcdir="${democlient.rootdir}/${dlservices.rel.path}">
     211      <classpath refid="project.classpath"/>
     212   </javac>
     213   <jar destfile="lib/DLservices.jar"
     214     basedir="${democlient.rootdir}/"
     215     excludes="${gui.rel.path}/*.*,${QBRdata.rel.path}/**,${gs3services.rel.path}/**">
     216   </jar>
     217</target>
     218
    205219<!-- Target that generates the GSearchInstaller jar file -->
    206220<target name="GSearchInstallerjar" description="Compiles and creates the jar file for the stand-alone GSearchInstaller application">
Note: See TracChangeset for help on using the changeset viewer.