Skip to content

Commit 39e7730

Browse files
committed
Update dependencies to remove dependency on release repo
1 parent c5fcba4 commit 39e7730

File tree

8 files changed

+14
-16
lines changed

8 files changed

+14
-16
lines changed

build.gradle

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,12 @@ allprojects {
99
group = "org.springframework.restdocs"
1010
repositories {
1111
mavenCentral()
12-
maven { url "https://repo.spring.io/snapshot" }
12+
maven {
13+
url "https://repo.spring.io/snapshot"
14+
content {
15+
includeGroup("org.springframework")
16+
}
17+
}
1318
}
1419
}
1520

docs/build.gradle

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,12 @@ plugins {
33
id "java-library"
44
}
55

6-
repositories {
7-
maven { url "https://repo.spring.io/release" }
8-
maven { url "https://repo.spring.io/snapshot" }
9-
}
10-
116
configurations {
127
asciidoctorExt
138
}
149

1510
dependencies {
16-
asciidoctorExt("io.spring.asciidoctor:spring-asciidoctor-extensions-block-switch:0.5.0")
11+
asciidoctorExt("io.spring.asciidoctor:spring-asciidoctor-extensions-block-switch:0.6.1")
1712

1813
internal(platform(project(":spring-restdocs-platform")))
1914
internal(enforcedPlatform("org.springframework:spring-framework-bom:5.3.8"))

settings.gradle

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
pluginManagement {
22
repositories {
33
mavenCentral()
4-
maven { url "https://repo.spring.io/plugins-release-local" }
5-
maven { url "https://repo.spring.io/release" }
64
gradlePluginPortal()
75
}
86
resolutionStrategy {
@@ -15,8 +13,8 @@ pluginManagement {
1513
}
1614

1715
plugins {
18-
id "com.gradle.enterprise" version "3.11.2"
19-
id "io.spring.ge.conventions" version "0.0.10"
16+
id "com.gradle.enterprise" version "3.12.2"
17+
id "io.spring.ge.conventions" version "0.0.13"
2018
}
2119

2220
rootProject.name = "spring-restdocs"

spring-restdocs-asciidoctor/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id "io.spring.compatibility-test" version "0.0.1"
2+
id "io.spring.compatibility-test" version "0.0.2"
33
id "java-library"
44
id "maven-publish"
55
}

spring-restdocs-core/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id "io.spring.compatibility-test" version "0.0.1"
2+
id "io.spring.compatibility-test" version "0.0.2"
33
id "java-library"
44
id "java-test-fixtures"
55
id "maven-publish"

spring-restdocs-mockmvc/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id "io.spring.compatibility-test" version "0.0.1"
2+
id "io.spring.compatibility-test" version "0.0.2"
33
id "java-library"
44
id "maven-publish"
55
id "optional-dependencies"

spring-restdocs-restassured/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id "io.spring.compatibility-test" version "0.0.1"
2+
id "io.spring.compatibility-test" version "0.0.2"
33
id "java-library"
44
id "maven-publish"
55
}

spring-restdocs-webtestclient/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id "io.spring.compatibility-test" version "0.0.1"
2+
id "io.spring.compatibility-test" version "0.0.2"
33
id "java-library"
44
id "maven-publish"
55
}

0 commit comments

Comments
 (0)