Lucene: Upgrade to latest 3.0.2 version, closes #231.

This commit is contained in:
kimchy 2010-06-20 01:04:39 +03:00
parent 384f8a4f42
commit e846ed6465
2 changed files with 17 additions and 17 deletions

View File

@ -1,22 +1,22 @@
<component name="libraryTable">
<library name="lucene">
<CLASSES>
<root url="jar://$GRADLE_REPOSITORY$/org.apache.lucene/lucene-core/jars/lucene-core-3.0.1.jar!/" />
<root url="jar://$GRADLE_REPOSITORY$/org.apache.lucene/lucene-analyzers/jars/lucene-analyzers-3.0.1.jar!/" />
<root url="jar://$GRADLE_REPOSITORY$/org.apache.lucene/lucene-queries/jars/lucene-queries-3.0.1.jar!/" />
<root url="jar://$GRADLE_REPOSITORY$/org.apache.lucene/lucene-fast-vector-highlighter/jars/lucene-fast-vector-highlighter-3.0.1.jar!/" />
<root url="jar://$GRADLE_REPOSITORY$/org.apache.lucene/lucene-core/jars/lucene-core-3.0.2.jar!/" />
<root url="jar://$GRADLE_REPOSITORY$/org.apache.lucene/lucene-analyzers/jars/lucene-analyzers-3.0.2.jar!/" />
<root url="jar://$GRADLE_REPOSITORY$/org.apache.lucene/lucene-queries/jars/lucene-queries-3.0.2.jar!/" />
<root url="jar://$GRADLE_REPOSITORY$/org.apache.lucene/lucene-fast-vector-highlighter/jars/lucene-fast-vector-highlighter-3.0.2.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES>
<root url="file://$PROJECT_DIR$/../../../opt/lucene/3.0.1.src/contrib/spellchecker/src/java" />
<root url="file://$PROJECT_DIR$/../../../opt/lucene/3.0.1.src/contrib/analyzers/common/src/java" />
<root url="file://$PROJECT_DIR$/../../../opt/lucene/3.0.1.src/contrib/queries/src/java" />
<root url="file://$PROJECT_DIR$/../../../opt/lucene/3.0.1.src/contrib/highlighter/src/java" />
<root url="file://$PROJECT_DIR$/../../../opt/lucene/3.0.1.src/contrib/snowball/src/java" />
<root url="file://$PROJECT_DIR$/../../../opt/lucene/3.0.1.src/src/java" />
<root url="file://$PROJECT_DIR$/../../../opt/lucene/3.0.1.src/contrib/analyzers/smartcn/src/java" />
<root url="file://$PROJECT_DIR$/../../../opt/lucene/3.0.1.src/contrib/fast-vector-highlighter/src/java" />
<root url="file://$PROJECT_DIR$/../../../opt/lucene/3.0.1.src/contrib/spatial/src/java" />
<root url="file://$PROJECT_DIR$/../../../opt/lucene/3.0.2.src/contrib/spellchecker/src/java" />
<root url="file://$PROJECT_DIR$/../../../opt/lucene/3.0.2.src/contrib/analyzers/common/src/java" />
<root url="file://$PROJECT_DIR$/../../../opt/lucene/3.0.2.src/contrib/queries/src/java" />
<root url="file://$PROJECT_DIR$/../../../opt/lucene/3.0.2.src/contrib/highlighter/src/java" />
<root url="file://$PROJECT_DIR$/../../../opt/lucene/3.0.2.src/contrib/snowball/src/java" />
<root url="file://$PROJECT_DIR$/../../../opt/lucene/3.0.2.src/src/java" />
<root url="file://$PROJECT_DIR$/../../../opt/lucene/3.0.2.src/contrib/analyzers/smartcn/src/java" />
<root url="file://$PROJECT_DIR$/../../../opt/lucene/3.0.2.src/contrib/fast-vector-highlighter/src/java" />
<root url="file://$PROJECT_DIR$/../../../opt/lucene/3.0.2.src/contrib/spatial/src/java" />
</SOURCES>
</library>
</component>

View File

@ -35,10 +35,10 @@ dependencies {
compile('org.slf4j:slf4j-log4j12:1.5.11') { transitive = false }
compile('log4j:log4j:1.2.15') { transitive = false }
compile 'org.apache.lucene:lucene-core:3.0.1'
compile 'org.apache.lucene:lucene-analyzers:3.0.1'
compile 'org.apache.lucene:lucene-queries:3.0.1'
compile 'org.apache.lucene:lucene-fast-vector-highlighter:3.0.1'
compile 'org.apache.lucene:lucene-core:3.0.2'
compile 'org.apache.lucene:lucene-analyzers:3.0.2'
compile 'org.apache.lucene:lucene-queries:3.0.2'
compile 'org.apache.lucene:lucene-fast-vector-highlighter:3.0.2'
testCompile project(':test-testng')
testCompile('org.testng:testng:5.10:jdk15') { transitive = false }