Revision 2748
Added by Duane Costa about 19 years ago
build.xml | ||
---|---|---|
439 | 439 |
includes="**/metacat/client/" /> |
440 | 440 |
</target> |
441 | 441 |
|
442 |
<target name="advancedsearchjar" depends="compile" |
|
443 |
description="Compiles and jars advanced search Java code to advancedsearch.jar in build dir"> |
|
444 |
<delete file="${build.dir}/advancedsearch.jar" /> |
|
445 |
<jar jarfile="${build.dir}/advancedsearch.jar" basedir="${build.dest}" |
|
446 |
includes="**/metacat/advancedsearch/" /> |
|
447 |
</target> |
|
448 |
|
|
442 | 449 |
<target name="harvester" depends="client" |
443 | 450 |
description="Compiles harvester java code to build dir"> |
444 | 451 |
<javac srcdir="${build.src}" |
Also available in: Unified diff
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.