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 2021/10/29 15:08:21 UTC

[ofbiz-framework] branch trunk updated: Improved: Builds fail due to unauthorized access to repo.spring.io/plugins-release (OFBIZ-12351)

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-framework.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 8f25830  Improved: Builds fail due to unauthorized access to repo.spring.io/plugins-release (OFBIZ-12351)
8f25830 is described below

commit 8f2583013dfa267f92621722bf476b1278f4e5b7
Author: Jacques Le Roux <ja...@les7arts.com>
AuthorDate: Fri Oct 29 16:53:01 2021 +0200

    Improved: Builds fail due to unauthorized access to repo.spring.io/plugins-release (OFBIZ-12351)
    
    I just flushed my Gradle cache and observed that I am not able to build OFBiz
    any longer due to unauthorized access to spring/plugins-release. The repository
    seems to be required for com.springsource.com.sun.syndication, maven lists .
    I reckon we are affected by the repo.spring.io permission changes.
    
    Thanks: Mart Naum for report, Wiebke for temporary fix (downgrading)
---
 build.gradle | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/build.gradle b/build.gradle
index 64843e9..65d6ab3 100644
--- a/build.gradle
+++ b/build.gradle
@@ -142,6 +142,7 @@ defaultTasks 'jar', 'test'
 
 allprojects {
     repositories{
+        jcenter() // temporary fix
         mavenCentral()
         // the switch from jCenter to mavenCentral needs some additional repositories to be configured here
         // this should be checked frequently to remove obsolete configurations if the artifacts are available
@@ -203,7 +204,7 @@ dependencies {
     implementation 'com.ibm.icu:icu4j:69.1'
     implementation 'com.lowagie:itext:2.1.7' // Don't update due to license change in newer versions, see OFBIZ-10455
     implementation 'com.sun.mail:javax.mail:1.6.2'
-    implementation 'com.sun.syndication:com.springsource.com.sun.syndication:1.0.0'
+    implementation 'com.sun.syndication:com.springsource.com.sun.syndication:0.9.0'
     implementation 'com.thoughtworks.xstream:xstream:1.4.18'
     implementation 'commons-fileupload:commons-fileupload:1.4'
     implementation 'commons-net:commons-net:3.8.0'