Skip to content

Commit

Permalink
fix: version conflicts due to spring boot upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
cc-ju committed Dec 15, 2023
1 parent c07cece commit 5a1b462
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion services/gateway/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ ext {
springCloudVersion = '2022.0.4'
versions = [
restAssured : '5.3.2',
junitJupiter : '5.8.0',
]
}
// override the version the spring boot dependency-management plugin would enforce
Expand Down
1 change: 0 additions & 1 deletion services/habit/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ configurations {
ext {
versions = [
restAssured : '5.3.2',
junitJupiter : '5.8.0',
chaosMonkey : '3.0.2',
testcontainers : '1.19.0',
postgresql : '42.6.0',
Expand Down
6 changes: 4 additions & 2 deletions services/report/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ repositories {
extra["chaosMonkeyVersion"] = "3.0.2"
extra["mockkVersion"] = "1.13.8"
extra["springMockkVersion"] = "4.0.2"
extra["wiremockVersion"] = "3.0.1"
extra["wiremockVersion"] = "3.3.1"
extra["moschiVersion"] = "1.15.0"

dependencies {
Expand Down Expand Up @@ -74,7 +74,9 @@ dependencies {

testImplementation("io.mockk:mockk:${property("mockkVersion")}")
testImplementation("com.ninja-squad:springmockk:${property("springMockkVersion")}")
testImplementation("com.github.tomakehurst:wiremock:${property("wiremockVersion")}")
// the standalone dependency avoids problems with jetty dependencies
// https://github.com/wiremock/wiremock/issues/2317#issuecomment-1695804622
testImplementation("org.wiremock:wiremock-standalone:${property("wiremockVersion")}")
}

tasks.withType<Test> {
Expand Down
1 change: 0 additions & 1 deletion services/track/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ configurations {
ext {
versions = [
restAssured : '5.3.2',
junitJupiter : '5.8.0',
chaosMonkey : '3.0.2',
testcontainers : '1.19.0',
reflections : '0.10.2',
Expand Down

0 comments on commit 5a1b462

Please sign in to comment.