@@ -89,6 +89,15 @@ allprojects {
89
89
90
90
apply plugin : ' io.spring.dependency-management'
91
91
92
+ repositories {
93
+ mavenCentral()
94
+ maven { url ' https://repo.spring.io/milestone' }
95
+ if (version. endsWith(' SNAPSHOT' )) {
96
+ maven { url ' https://repo.spring.io/snapshot' }
97
+ }
98
+ // maven { url 'https://repository.apache.org/content/groups/staging/' }
99
+ }
100
+
92
101
dependencyManagement {
93
102
resolutionStrategy {
94
103
cacheChangingModulesFor 0 , ' seconds'
@@ -101,23 +110,13 @@ allprojects {
101
110
imports {
102
111
mavenBom " com.fasterxml.jackson:jackson-bom:$jacksonBomVersion "
103
112
mavenBom " org.junit:junit-bom:$junitJupiterVersion "
104
- mavenBom " org.springframework:spring-framework-bom:$springVersion "
105
- mavenBom " io.projectreactor:reactor-bom:$reactorVersion "
106
- mavenBom " org.springframework.data:spring-data-bom:$springDataVersion "
107
113
mavenBom " io.micrometer:micrometer-bom:$micrometerVersion "
108
114
mavenBom " io.micrometer:micrometer-tracing-bom:$micrometerTracingVersion "
115
+ mavenBom " io.projectreactor:reactor-bom:$reactorVersion "
116
+ mavenBom " org.springframework.data:spring-data-bom:$springDataVersion "
117
+ mavenBom " org.springframework:spring-framework-bom:$springVersion "
109
118
}
110
119
}
111
-
112
- repositories {
113
- mavenCentral()
114
- maven { url ' https://repo.spring.io/milestone' }
115
- if (version. endsWith(' SNAPSHOT' )) {
116
- maven { url ' https://repo.spring.io/snapshot' }
117
- }
118
- // maven { url 'https://repository.apache.org/content/groups/staging/' }
119
- }
120
-
121
120
}
122
121
123
122
configure(javaProjects) { subproject ->
0 commit comments