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
11 changes: 9 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,15 @@ configurations{
}

dependencies {
pluginLibs libs.sshj
pluginLibs libs.asnOne
// slf4j-api is provided by the Rundeck host at runtime; excluding it here keeps
// sshj/asn-one from bundling their own copy, which otherwise shadows the host's
// binding and trips SLF4J's "no providers found" NOP warning (see #70).
pluginLibs(libs.sshj) {
exclude group: 'org.slf4j', module: 'slf4j-api'
}
pluginLibs(libs.asnOne) {
exclude group: 'org.slf4j', module: 'slf4j-api'
}
pluginLibs libs.bundles.bouncycastle
pluginLibs libs.expectitCore

Expand Down
Loading