Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,12 @@ jvmDependencyConflicts.patch {
module("org.rnorth.duct-tape:duct-tape") {
addRuntimeOnlyDependency("org.slf4j:slf4j-api") // wrongly marked as provided
}
module("org.testcontainers:testcontainers") {
// transitive dependencies of 'commons-compress' that are used directly
addRuntimeOnlyDependency("commons-codec:commons-codec")
addRuntimeOnlyDependency("commons-io:commons-io")
addRuntimeOnlyDependency("org.apache.commons:commons-lang3")
}

// Reduce scope of transitively added annotation libraries
val annotationLibrariesCompileTime =
Expand Down
Loading