File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed
Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 11buildscript {
2- configurations. all {
3- resolutionStrategy. dependencySubstitution {
4- substitute module(' org.apache.xerces:xercesImpl' ) with module(' xerces:xercesImpl:2.9.1' )
5- substitute module(' org.apache.xerces:resolver' ) with module(' xerces:resolver:2.9.1' )
6- }
7- }
82 dependencies {
93 classpath " io.spring.javaformat:spring-javaformat-gradle-plugin:$springJavaformatVersion "
104 classpath ' io.spring.nohttp:nohttp-gradle:0.0.10'
Original file line number Diff line number Diff line change @@ -60,6 +60,14 @@ gradlePlugin {
6060}
6161
6262configurations {
63+ all {
64+ resolutionStrategy. dependencySubstitution {
65+ substitute(module(" org.apache.xerces:xercesImpl" ))
66+ .using(module(" xerces:xercesImpl:2.9.1" ))
67+ substitute(module(" org.apache.xerces:resolver" ))
68+ .using(module(" xerces:resolver:2.9.1" ))
69+ }
70+ }
6371 implementation {
6472 exclude module : ' groovy-all'
6573 }
You can’t perform that action at this time.
0 commit comments