Updates junit versions to 5.12.1

This commit is contained in:
spencergibb
2025-03-28 16:37:23 -04:00
parent 2b948358b6
commit 5a463137ac
3 changed files with 9 additions and 3 deletions

View File

@@ -114,7 +114,9 @@ dependencies {
}
contractTest {
useJUnitPlatform("5.12.1")
useJUnitPlatform {
version = "5.12.1"
}
if (getProp(envVars, "MESSAGING_TYPE") != "") {
systemProperty("spring.profiles.active", "messagingtype")
} else if (getProp(envVars, "STANDALONE_PROTOCOL") != "") {

View File

@@ -16,5 +16,7 @@ dependencies {
}
test {
useJUnitPlatform("5.12.1")
useJUnitPlatform {
version = "5.12.1"
}
}

View File

@@ -101,7 +101,9 @@ task libtest() {
}
test {
useJUnitPlatform("5.12.1")
useJUnitPlatform {
version = "5.12.1"
}
testLogging {
exceptionFormat = 'full'
}