Reputation: 2409
This is probably a very basic question, but I am unable to find Lucene
contrib jar in Apache's Maven
repository. For e.g. I looked here, but there's only a .pom
, there's no jar file, same with repositories mentioned here.
Am I missing anything obvious?
Upvotes: 0
Views: 215
Reputation: 2409
I found out the answer. Except for couple of versions mentioned by Felipe Hummel, there is not single contrib jar. Contrib contains multiple components such as analyzers, highlighters, etc. and each of them have a JAR.
Upvotes: 0
Reputation: 4774
You can download the jars for maven repositories in here: http://mvnrepository.com/artifact/org.apache.lucene/lucene-core/4.4.0
For the contrib package there is a .jar only for the 3.0.2 and not 3.0.3 (don't know why): http://mvnrepository.com/artifact/org.apache.lucene/lucene-contrib
Also, you can still download de source code and generate the .jar yourself. Should be as easy as running mvn package
.
Upvotes: 1