Lucene 4.0-SNAPSHOT(或5.0-SNAPSHOT)的Maven存储库

时间:2011-12-19 12:13:16

标签: maven solr lucene

我找不到Lucene 4.0的maven存储库。我不想使用my own,因为它没有自动更新等。

你有提示吗?我已经尝试了以下的回购没有成功(那里没有4.0):

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

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

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

2 个答案:

答案 0 :(得分:4)

答案 1 :(得分:1)

您可以对lucene 4.0以及5.0

使用以下maven配置
 <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>

如果您需要最新的文档... look no further

相关问题