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 1
1
buildscript {
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
- }
8
2
dependencies {
9
3
classpath " io.spring.javaformat:spring-javaformat-gradle-plugin:$springJavaformatVersion "
10
4
classpath ' io.spring.nohttp:nohttp-gradle:0.0.10'
Original file line number Diff line number Diff line change @@ -60,6 +60,14 @@ gradlePlugin {
60
60
}
61
61
62
62
configurations {
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
+ }
63
71
implementation {
64
72
exclude module : ' groovy-all'
65
73
}
You can’t perform that action at this time.
0 commit comments