Skip to content

Commit 5a46313

Browse files
committed
Updates junit versions to 5.12.1
1 parent 2b94835 commit 5a46313

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

Diff for: docker/spring-cloud-contract-docker/project/build.gradle

+3-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,9 @@ dependencies {
114114
}
115115

116116
contractTest {
117-
useJUnitPlatform("5.12.1")
117+
useJUnitPlatform {
118+
version = "5.12.1"
119+
}
118120
if (getProp(envVars, "MESSAGING_TYPE") != "") {
119121
systemProperty("spring.profiles.active", "messagingtype")
120122
} else if (getProp(envVars, "STANDALONE_PROTOCOL") != "") {

Diff for: docker/spring-cloud-contract-docker/project/buildSrc/build.gradle

+3-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,7 @@ dependencies {
1616
}
1717

1818
test {
19-
useJUnitPlatform("5.12.1")
19+
useJUnitPlatform {
20+
version = "5.12.1"
21+
}
2022
}

Diff for: spring-cloud-contract-tools/spring-cloud-contract-gradle-plugin/build.gradle

+3-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,9 @@ task libtest() {
101101
}
102102

103103
test {
104-
useJUnitPlatform("5.12.1")
104+
useJUnitPlatform {
105+
version = "5.12.1"
106+
}
105107
testLogging {
106108
exceptionFormat = 'full'
107109
}

0 commit comments

Comments
 (0)