From 774a8fbadf92f1420d191dfbd106951ea7966775 Mon Sep 17 00:00:00 2001 From: Andreas Dangel Date: Thu, 19 Jan 2023 14:02:16 +0100 Subject: [PATCH] [ci] Add additional repository for spring-framework-build Add https://maven.repository.redhat.com/ga/ as repository in order to resolve dependency com.ibm.websphere/uow/6.0.2.17 See https://spring.io/blog/2020/10/29/notice-of-permissions-changes-to-repo-spring-io-fall-and-winter-2020 --- .ci/files/project-list.xml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.ci/files/project-list.xml b/.ci/files/project-list.xml index dc8eb00bcb..50893c2df0 100644 --- a/.ci/files/project-list.xml +++ b/.ci/files/project-list.xml @@ -134,6 +134,25 @@ index 6021fa574d..15d29ed699 100644 EOF ) | patch --strip=1 +# Patch 4: Add https://maven.repository.redhat.com/ga/ as repository in order to resolve +# dependency com.ibm.websphere/uow/6.0.2.17 +# See https://spring.io/blog/2020/10/29/notice-of-permissions-changes-to-repo-spring-io-fall-and-winter-2020 +(cat < + } + repositories { + mavenCentral() ++ maven { url "https://maven.repository.redhat.com/ga/" } + maven { url "https://repo.spring.io/libs-spring-framework-build" } + } + } +EOF +) | patch --strip=1 + ./gradlew --console=plain --build-cache --no-daemon --max-workers=4 build testClasses -x test -x javadoc -x api -x asciidoctor -x asciidoctorPdf ./gradlew --console=plain --build-cache --no-daemon --max-workers=4 createSquishClasspath -q > classpath.txt ]]>