You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jl...@apache.org on 2019/08/17 07:01:55 UTC

svn commit: r1865336 - /ofbiz/ofbiz-plugins/trunk/solr/build.gradle

Author: jleroux
Date: Sat Aug 17 07:01:55 2019
New Revision: 1865336

URL: http://svn.apache.org/viewvc?rev=1865336&view=rev
Log:
Improved: Update build.gradle to the latest dependencies
(OFBIZ-11151)
We can update Guava to v28: 
https://mvnrepository.com/artifact/org.apache.solr/solr-core/8.2.0.

Modified:
    ofbiz/ofbiz-plugins/trunk/solr/build.gradle

Modified: ofbiz/ofbiz-plugins/trunk/solr/build.gradle
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/trunk/solr/build.gradle?rev=1865336&r1=1865335&r2=1865336&view=diff
==============================================================================
--- ofbiz/ofbiz-plugins/trunk/solr/build.gradle (original)
+++ ofbiz/ofbiz-plugins/trunk/solr/build.gradle Sat Aug 17 07:01:55 2019
@@ -20,13 +20,13 @@ dependencies {
     // Remember to change the version number in SearchWorker class when upgrading.
     // Also Solr et Lucene should use the same version, luceneMatchVersion should be updated in solrconfig.xml
     pluginLibsCompile 'org.apache.solr:solr-core:8.2.0'
-    pluginLibsCompile 'com.google.guava:guava:20.0'
+    pluginLibsCompile 'com.google.guava:guava:28.0-jre'
 }
 
 configurations.all {
     resolutionStrategy {
       dependencySubstitution {
-          substitute module('com.google.guava:guava') with module('com.google.guava:guava:20.0')
+          substitute module('com.google.guava:guava') with module('com.google.guava:guava:28.0-jre')
       }
     }
 }