Skip to content

Commit 156cf11

Browse files
committed
Allow milestone dependencies for compatibility testing of a release
1 parent 92e027b commit 156cf11

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

build.gradle

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,13 @@ allprojects {
99
group = "org.springframework.restdocs"
1010
repositories {
1111
mavenCentral()
12-
if (version.contains('-')) {
13-
maven { url "https://repo.spring.io/milestone" }
12+
maven {
13+
url "https://repo.spring.io/milestone"
14+
content {
15+
includeGroup "io.micrometer"
16+
includeGroup "io.projectreactor"
17+
includeGroup "org.springframework"
18+
}
1419
}
1520
if (version.endsWith('-SNAPSHOT')) {
1621
maven { url "https://repo.spring.io/snapshot" }

0 commit comments

Comments
 (0)