Skip to content

Commit

Permalink
exclude bcprov-jdk15on
Browse files Browse the repository at this point in the history
  • Loading branch information
317787106 committed Apr 30, 2024
1 parent da8b186 commit ba1b1e5
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,9 @@ dependencies {
annotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.12'

implementation group: 'dnsjava', name: 'dnsjava', version: '3.5.2'
implementation group: 'org.web3j', name: 'crypto', version: '5.0.0'
implementation group: 'org.web3j', name: 'crypto', version: '5.0.0', {
exclude group: "org.bouncycastle", module: "bcprov-jdk15on"
}
implementation('software.amazon.awssdk:route53:2.18.41', {
exclude group: 'io.netty', module: 'netty-codec-http2'
exclude group: 'io.netty', module: 'netty-codec-http'
Expand All @@ -85,7 +87,9 @@ dependencies {
exclude group: 'io.netty', module: 'netty-transport-classes-epoll'
exclude group: 'io.netty', module: 'netty-transport-native-unix-common'
})
implementation group: 'com.aliyun', name: 'alidns20150109', version: '3.0.1'
implementation group: 'com.aliyun', name: 'alidns20150109', version: '3.0.1', {
exclude group: "org.bouncycastle", module: "bcprov-jdk15on"
}
}

tasks.matching { it instanceof Test }.all {
Expand Down

0 comments on commit ba1b1e5

Please sign in to comment.