Browse Source

Resolve plugin dependencies

Steve Riesenberg 2 năm trước cách đây
mục cha
commit
5dbfa57c19
1 tập tin đã thay đổi với 6 bổ sung0 xóa
  1. 6 0
      build.gradle

+ 6 - 0
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"