Author: jleroux
Date: Mon Jan 15 17:40:49 2018
New Revision: 1821184
URL:
http://svn.apache.org/viewvc?rev=1821184&view=revLog:
Improved: Update Solr/Lucene to 7.2.1.
(OFBIZ-10166)
Reminder: to make sure the LUCENE_VERSION constant in SearchWorker.java
matches the dependency version. Also the same dependency version should be used
by Solr and Lucene
Modified:
ofbiz/ofbiz-plugins/trunk/lucene/build.gradle
ofbiz/ofbiz-plugins/trunk/solr/build.gradle
Modified: ofbiz/ofbiz-plugins/trunk/lucene/build.gradle
URL:
http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/trunk/lucene/build.gradle?rev=1821184&r1=1821183&r2=1821184&view=diff==============================================================================
--- ofbiz/ofbiz-plugins/trunk/lucene/build.gradle (original)
+++ ofbiz/ofbiz-plugins/trunk/lucene/build.gradle Mon Jan 15 17:40:49 2018
@@ -17,7 +17,7 @@
* under the License.
*/
dependencies {
- pluginLibsCompile 'org.apache.lucene:lucene-core:7.2.1'
+ pluginLibsCompile 'org.apache.lucene:lucene-core:7.2.1' // Remember to change the version number in SearchWorker class when upgrading. Also Solr et Lucene should use the same version
pluginLibsCompile 'org.apache.lucene:lucene-queryparser:7.2.1'
pluginLibsCompile 'org.apache.lucene:lucene-analyzers-common:7.2.1'
}
\ No newline at end of file
Modified: ofbiz/ofbiz-plugins/trunk/solr/build.gradle
URL:
http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/trunk/solr/build.gradle?rev=1821184&r1=1821183&r2=1821184&view=diff==============================================================================
--- ofbiz/ofbiz-plugins/trunk/solr/build.gradle (original)
+++ ofbiz/ofbiz-plugins/trunk/solr/build.gradle Mon Jan 15 17:40:49 2018
@@ -17,7 +17,7 @@
* under the License.
*/
dependencies {
- pluginLibsCompile 'org.apache.solr:solr-core:7.2.1'
+ pluginLibsCompile 'org.apache.solr:solr-core:7.2.1' // Remember to change the version number in SearchWorker class when upgrading. Also Solr et Lucene should use the same version
pluginLibsCompile 'com.google.guava:guava:20.0'
}