Friday, 7 August 2015

How to user Apache lucene library into your application though maven ?

                            Maven Dependency
                        
 <dependency>
      <groupid>org.apache.lucene</groupid>
     <artifactid>lucene-core</artifactid>
    <version>${Version}</version>
    <type>jar</type>
   <scope>compile</scope>
 </dependency>

Download Dependency
Download Lucene from http://lucene.apache.org/ and

add the lucene-core.jar in the classpath

Note: The current Apache lucene version is 5.2.X (as of 7th Aug 2015). ${version} should be replaced with proper version what you may want to use.

No comments:

Post a Comment