File tree Expand file tree Collapse file tree 1 file changed +22
-2
lines changed
Expand file tree Collapse file tree 1 file changed +22
-2
lines changed Original file line number Diff line number Diff line change @@ -11,8 +11,28 @@ buildscript {
1111
1212apply plugin : ' io.spring.convention.root'
1313
14- group = ' org.springframework.data'
15- description = ' Spring Test Framework for Apache Geode and Pivotal GemFire using Spring Data.'
14+ allprojects {
15+
16+ group = ' org.springframework.data'
17+
18+ repositories {
19+
20+ mavenCentral()
21+
22+ if (version. contains(' -' )) {
23+ maven { url " https://repo.spring.io/milestone" }
24+ }
25+ if (version. endsWith(' -SNAPSHOT' )) {
26+ maven { url " https://repo.spring.io/snapshot" }
27+ }
28+ }
29+
30+ configurations. all {
31+ resolutionStrategy. cacheChangingModulesFor 0 , " minutes"
32+ }
33+ }
34+
35+ description = ' Spring Test Framework for Apache Geode and VMware Tanzu GemFire using Spring Data.'
1636
1737ext[' spring.version' ] = " $springVersion "
1838ext[' spring-framework.version' ] = " $springVersion "
You can’t perform that action at this time.
0 commit comments