I开发者_如何学运维'm building a spellchecker using Lucene and getting a
Failed to load Main-Class manifest attribute from
/lib/lucene-spellchecker-2.3.2.jar
That file is in the right path a la:
javac -Xlint:unchecked -cp lib/lucene-core-2.9.0.jar;lib/lucene-spellchecker-2.3.2.jar -source 1.5 -target 1.5 \
-d bin/ `find src/ -name *.java`
What am I missing here?
It appears that you're on a Unix system so you need to use :
instead of ;
for your path separator.
精彩评论