From 5dbfa57c192d0ea283035ae5ba865c410b572814 Mon Sep 17 00:00:00 2001 From: Steve Riesenberg Date: Wed, 26 Oct 2022 13:45:09 -0500 Subject: [PATCH] Resolve plugin dependencies --- build.gradle | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build.gradle b/build.gradle index 978deff2aa..b047649ee1 100644 --- a/build.gradle +++ b/build.gradle @@ -1,4 +1,10 @@ buildscript { + configurations.all { + resolutionStrategy.dependencySubstitution { + substitute module('org.apache.xerces:xercesImpl') with module('xerces:xercesImpl:2.9.1') + substitute module('org.apache.xerces:resolver') with module('xerces:resolver:2.9.1') + } + } dependencies { classpath 'io.spring.gradle:spring-build-conventions:0.0.23.4.RELEASE' classpath "org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion"