[metacat-cvs] metacat build.xml

Duane Costa costa at ecoinformatics.org
Wed Nov 16 10:43:11 PST 2005


costa       05/11/16 10:43:11

  Modified:    .        build.xml
  Log:
  Bug #2207. Add new build target, advancedsearchjar. This allows the Advanced Search engine to be built as a library for use in other web applications. This is important because LTER is currently using a separate web application for its interface to the Metacat data catalog, so the library allows the search engine to be used both inside and outside Metacat. Eventually LTER would like to fully re-integrate its Metacat interface with the lter skin, so eventually the need for this build target may go away.
  
  Revision  Changes    Path
  1.228     +10 -3     metacat/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvs/metacat/build.xml,v
  retrieving revision 1.227
  retrieving revision 1.228
  diff -u -r1.227 -r1.228
  --- build.xml	11 Nov 2005 20:08:59 -0000	1.227
  +++ build.xml	16 Nov 2005 18:43:10 -0000	1.228
  @@ -6,9 +6,9 @@
     *              National Center for Ecological Analysis and Synthesis
     * For Details: http://www.nceas.ucsb.edu/
     *
  -  *    '$Author: jones $'
  -  *    '$Date: 2005/11/11 20:08:59 $'
  -  *    '$Revision: 1.227 $'
  +  *    '$Author: costa $'
  +  *    '$Date: 2005/11/16 18:43:10 $'
  +  *    '$Revision: 1.228 $'
     *
     * Build file for the Ant cross-platform build system for metacat
     * See http://jakarta.apache.org for details on Ant
  @@ -438,6 +438,13 @@
          <jar jarfile="${build.dir}/${name}-client.jar" basedir="${build.dest}"
               includes="**/metacat/client/" />
      </target>
  +
  +    <target name="advancedsearchjar" depends="compile"
  +            description="Compiles and jars advanced search Java code to advancedsearch.jar in build dir">
  +        <delete file="${build.dir}/advancedsearch.jar" />
  +        <jar jarfile="${build.dir}/advancedsearch.jar" basedir="${build.dest}"
  +             includes="**/metacat/advancedsearch/" />
  +    </target>
   
      <target name="harvester" depends="client"
              description="Compiles harvester java code to build dir">
  
  
  


More information about the Metacat-cvs mailing list