change name of JAR built, add descriptions for other targets

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150953 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Erik Hatcher 2004-02-23 15:23:25 +00:00
parent 48fa83e2ac
commit 94f1d399dc

View File

@ -1,6 +1,6 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<project name="wordnet" default="default"> <project name="lucene-wordnet" default="default">
<description> <description>
WordNet WordNet
@ -13,7 +13,7 @@
<import file="../common.xml"/> <import file="../common.xml"/>
<target name="index" depends="compile"> <target name="index" depends="compile" description="Build WordNet index">
<fail if="synindex.exists"> <fail if="synindex.exists">
Index already exists - must remove first. Index already exists - must remove first.
</fail> </fail>
@ -29,7 +29,7 @@
</java> </java>
</target> </target>
<target name="synonym"> <target name="synonym" description="Find synonyms for word">
<fail unless="synindex.exists"> <fail unless="synindex.exists">
Index does not exist. Index does not exist.
</fail> </fail>