upgrade to lucene 5 snapshot (the compile is still broken as it was before, so untested)

This commit is contained in:
Robert Muir 2014-11-05 18:01:11 -05:00
parent ab87790ed7
commit 8e31e1edf1
1 changed files with 14 additions and 2 deletions

16
pom.xml
View File

@ -44,7 +44,8 @@ governing permissions and limitations under the License. -->
<properties>
<elasticsearch.version>2.0.0-SNAPSHOT</elasticsearch.version>
<lucene.version>4.10.2</lucene.version>
<lucene.version>5.0.0</lucene.version>
<lucene.maven.version>5.0.0-snapshot-1636426</lucene.maven.version>
<tests.output>onerror</tests.output>
<tests.shuffle>true</tests.shuffle>
<tests.output>onerror</tests.output>
@ -53,6 +54,17 @@ governing permissions and limitations under the License. -->
<es.logger.level>INFO</es.logger.level>
</properties>
<repositories>
<repository>
<id>sonatype</id>
<url>http://oss.sonatype.org/content/repositories/releases/</url>
</repository>
<repository>
<id>Lucene snapshots</id>
<url>https://download.elasticsearch.org/lucenesnapshots/maven/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.hamcrest</groupId>
@ -75,7 +87,7 @@ governing permissions and limitations under the License. -->
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-test-framework</artifactId>
<version>${lucene.version}</version>
<version>${lucene.maven.version}</version>
<scope>test</scope>
</dependency>