Skip to content

Commit 22696f8

Browse files
authored
Merge pull request #2168 from Netflix/feature/upgrade-spring-boot
OSS Upgrade to spring-boot 3.5 and spring-graphql 1.4.0
2 parents 78346f0 + 3e2df40 commit 22696f8

File tree

27 files changed

+8212
-6665
lines changed

27 files changed

+8212
-6665
lines changed

build.gradle.kts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ allprojects {
5151
// and suggest an upgrade. The only exception currently are those defined
5252
// in buildSrc, most likely because the variables are used in plugins as well
5353
// as dependencies. e.g. KOTLIN_VERSION
54-
extra["sb.version"] = "3.4.5"
54+
extra["sb.version"] = "3.5.0"
5555
extra["kotlin.version"] = Versions.KOTLIN_VERSION
5656
}
5757
val internalBomModules by extra(
@@ -96,9 +96,14 @@ configure(subprojects.filterNot { it in internalBomModules }) {
9696
exclude(group = "org.junit.vintage", module = "junit-vintage-engine")
9797
}
9898

99-
99+
implementation("org.slf4j:slf4j-api:2.0.17")
100100
implementation("org.jetbrains:annotations:26.0.2")
101101
testImplementation("io.mockk:mockk:1.+")
102+
103+
// JUnit 5 dependencies
104+
testImplementation(platform("org.junit:junit-bom:5.12.2"))
105+
testImplementation("org.junit.jupiter:junit-jupiter")
106+
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
102107
}
103108

104109
jmh {

0 commit comments

Comments
 (0)