File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -229,6 +229,16 @@ configure(subprojects - project(":spring-build-src")) { subproject ->
229
229
archives sourcesJar
230
230
archives javadocJar
231
231
}
232
+
233
+ configurations. all {
234
+ resolutionStrategy {
235
+ eachDependency { DependencyResolveDetails details ->
236
+ if (details. requested. group == ' org.springframework' ) {
237
+ details. useVersion springVersion
238
+ }
239
+ }
240
+ }
241
+ }
232
242
}
233
243
234
244
subprojects {
@@ -311,8 +321,6 @@ project('spring-batch-infrastructure') {
311
321
312
322
dependencies {
313
323
314
- compile enforcedPlatform(" org.springframework:spring-framework-bom:$springVersion " )
315
-
316
324
compile " org.springframework:spring-core:$springVersion "
317
325
compile " org.springframework.retry:spring-retry:$springRetryVersion "
318
326
You can’t perform that action at this time.
0 commit comments