简体   繁体   中英

Maven repository for Lucene 4.0-SNAPSHOT (or 5.0-SNAPSHOT)

I cannot find a maven repository for Lucene 4.0. I don't want to use my own as it does not get update automatically etc.

Do you have a hint? I already tried the following repos without success (4.0 is not available there):

http://repo1.maven.org/maven2/

https://oss.sonatype.org/content/repositories/snapshots/

https://oss.sonatype.org/content/groups/public/

You can use the following maven configuration for lucene 4.0 as well as for 5.0

 <repository>
        <id>lucene-repository</id>
        <name>Lucene Maven</name>
        <url>https://repository.apache.org/snapshots/</url>
        <snapshots>
            <enabled>true</enabled>
            <updatePolicy>always</updatePolicy>
        </snapshots>
 </repository>

and if you need the latest docs ... look no further

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM