Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ kaml = "0.77.0"
kotlinx-coroutines = "1.10.2"

# Testing
jupiter = "5.5.2"
jupiter = "5.14.3"
assertj = "3.27.7"
mockito-kotlin = "6.3.0"
testcontainers = "1.21.4"
Expand Down Expand Up @@ -90,7 +90,7 @@ jackson-module-kotlin = { module = "com.fasterxml.jackson.module:jackson-module-
jackson-datatype-jsr310 = { module = "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", version.ref = "jackson-dataformat" }

# Testing
junit-jupiter = { module = "org.junit.jupiter:junit-jupiter-engine", version.ref = "jupiter" }
junit-jupiter = { module = "org.junit.jupiter:junit-jupiter", version.ref = "jupiter" }
junit-platform-launcher = { module = "org.junit.platform:junit-platform-launcher" }
assertj-core = { module = "org.assertj:assertj-core", version.ref = "assertj" }
mockito-kotlin = { module = "org.mockito.kotlin:mockito-kotlin", version.ref = "mockito-kotlin" }
Expand Down
2 changes: 1 addition & 1 deletion spark/bulk-writer-s3/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies {

// Test dependencies
testImplementation(libs.bundles.testcontainers)
testImplementation("org.junit.jupiter:junit-jupiter:5.10.2")
testImplementation(libs.junit.jupiter)
testRuntimeOnly(libs.junit.platform.launcher)
testImplementation("org.assertj:assertj-core:3.27.7")
testImplementation("org.apache.spark:spark-core_2.12:3.5.7")
Expand Down
2 changes: 1 addition & 1 deletion spark/common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dependencies {

// Test dependencies
testImplementation(libs.bundles.testcontainers)
testImplementation("org.junit.jupiter:junit-jupiter:5.10.2")
testImplementation(libs.junit.jupiter)
testRuntimeOnly(libs.junit.platform.launcher)
testImplementation("org.assertj:assertj-core:3.27.7")
// Spark is compileOnly (provided on EMR), but needed for unit testing SparkJobConfig.
Expand Down