Skip to content
Closed
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
1 change: 1 addition & 0 deletions spark-operator/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ dependencies {
implementation(libs.metrics.jvm)
compileOnly(libs.spark.core) {
exclude group: "com.github.luben"
exclude group: "commons-collections", module: "commons-collections"
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is missed in spark-operator module.

exclude group: "io.netty", module: "netty-tcnative-boringssl-static"
exclude group: "io.netty", module: "netty-tcnative-classes"
exclude group: "org.apache.logging.log4j"
Expand Down
10 changes: 8 additions & 2 deletions spark-submission-worker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,23 @@
dependencies {
implementation project(":spark-operator-api")
implementation(libs.kubernetes.client)
implementation(libs.log4j.api)
implementation(libs.log4j.core)
implementation(libs.log4j.slf4j2.impl)
implementation(libs.slf4j.api)

implementation(libs.spark.kubernetes) {
Copy link
Member Author

@dongjoon-hyun dongjoon-hyun Oct 2, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The exclusion list is adjusted and sorted.

exclude group: "io.fabric8"
exclude group: "com.github.luben"
exclude group: "commons-collections", module: "commons-collections"
exclude group: "io.fabric8"
exclude group: "io.netty", module: "netty-tcnative-boringssl-static"
exclude group: "io.netty", module: "netty-tcnative-classes"
exclude group: "org.apache.logging.log4j"
exclude group: "org.fusesource.leveldbjni"
exclude group: "org.lz4"
exclude group: "org.rocksdb"
exclude group: "org.slf4j"
exclude group: "org.xerial.snappy"
exclude group: 'commons-collections', module: 'commons-collections'
}

compileOnly(libs.lombok)
Expand Down
Loading