This is an automated email from the ASF dual-hosted git repository.
jleroux pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/ofbiz-plugins.git The following commit(s) were added to refs/heads/trunk by this push: new 40d7c57 Improved: Update build.gradle to the latest dependencies (OFBIZ-12092) 40d7c57 is described below commit 40d7c57662a3450dd42d1262c72846079bce2a63 Author: Jacques Le Roux <[hidden email]> AuthorDate: Thu Dec 17 18:44:33 2020 +0100 Improved: Update build.gradle to the latest dependencies (OFBIZ-12092) I crossed new issues with plugins: I tried to update Solr and Lucene to 8.7.0 but crossed issues (compilation and Eclipse classpath) Same for Jersey with 3.0.0 version --- example/build.gradle | 2 +- lucene/build.gradle | 6 +++--- ofbiz-rest-impl/build.gradle | 6 +++--- solr/build.gradle | 2 +- solr/home/solrdefault/conf/solrconfig.xml | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/example/build.gradle b/example/build.gradle index 420b52c..eb42651 100644 --- a/example/build.gradle +++ b/example/build.gradle @@ -18,5 +18,5 @@ */ dependencies { - pluginLibsCompile 'org.apache.tomcat.embed:tomcat-embed-websocket:9.0.37' + pluginLibsCompile 'org.apache.tomcat.embed:tomcat-embed-websocket:9.0.41' } diff --git a/lucene/build.gradle b/lucene/build.gradle index 971312e..0c09701 100644 --- a/lucene/build.gradle +++ b/lucene/build.gradle @@ -20,7 +20,7 @@ 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 // LUCENE_VERSION in SearchWorker.java should be updated - pluginLibsCompile 'org.apache.lucene:lucene-core:8.5.2' - pluginLibsCompile 'org.apache.lucene:lucene-queryparser:8.5.2' - pluginLibsCompile 'org.apache.lucene:lucene-analyzers-common:8.5.2' + pluginLibsCompile 'org.apache.lucene:lucene-core:8.5.2' // I tried to update to 8.7.0 but crossed issues (compilation and eclipse classpath) + pluginLibsCompile 'org.apache.lucene:lucene-queryparser:8.5.2' // I tried to update to 8.7.0 but crossed issues (compilation and eclipse classpath) + pluginLibsCompile 'org.apache.lucene:lucene-analyzers-common:8.5.2' // I tried to update to 8.7.0 but crossed issues (compilation and eclipse classpath) } diff --git a/ofbiz-rest-impl/build.gradle b/ofbiz-rest-impl/build.gradle index 3123b2c..2e3887e 100644 --- a/ofbiz-rest-impl/build.gradle +++ b/ofbiz-rest-impl/build.gradle @@ -27,9 +27,9 @@ dependencies { pluginLibsCompile 'org.glassfish.jersey.media:jersey-media-multipart:2.31' pluginLibsCompile 'org.glassfish.jersey.media:jersey-media-json-jackson:2.31' pluginLibsCompile 'org.glassfish.jersey.inject:jersey-hk2:2.31' - pluginLibsCompile 'io.swagger.core.v3:swagger-jaxrs2:2.1.2' - pluginLibsCompile 'io.swagger.core.v3:swagger-jaxrs2-servlet-initializer:2.1.2' - pluginLibsCompile 'io.swagger.core.v3:swagger-annotations:2.1.2' + pluginLibsCompile 'io.swagger.core.v3:swagger-jaxrs2:2.1.6' + pluginLibsCompile 'io.swagger.core.v3:swagger-jaxrs2-servlet-initializer:2.1.6' + pluginLibsCompile 'io.swagger.core.v3:swagger-annotations:2.1.6' } task install { diff --git a/solr/build.gradle b/solr/build.gradle index cee21e1..67ef1c9 100644 --- a/solr/build.gradle +++ b/solr/build.gradle @@ -19,7 +19,7 @@ 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.5.2' + pluginLibsCompile 'org.apache.solr:solr-core:8.5.2' // I tried to update to 8.7.0 but crossed issues (compilation and eclipse classpath) pluginLibsCompile 'com.google.guava:guava:28.0-jre' } diff --git a/solr/home/solrdefault/conf/solrconfig.xml b/solr/home/solrdefault/conf/solrconfig.xml index 9e305d7..2bce0b0 100644 --- a/solr/home/solrdefault/conf/solrconfig.xml +++ b/solr/home/solrdefault/conf/solrconfig.xml @@ -35,7 +35,7 @@ that you fully re-index after changing this setting as it can affect both how text is indexed and queried. --> - <luceneMatchVersion>8.5.2</luceneMatchVersion> + <luceneMatchVersion>8.5.2</luceneMatchVersion> <!-- I tried to update to 8.7.0 but crossed issues --> <!-- <lib/> directives can be used to instruct Solr to load any Jars |
Free forum by Nabble | Edit this page |