Skip to content

Commit 499a649

Browse files
Merge pull request #88 from 317787106/hotfix/fix_bcprov_version
feat(dependency): fix bcprov version
2 parents c2a9d6f + d4e054a commit 499a649

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

build.gradle

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ dependencies {
6464
implementation group: 'io.grpc', name: 'grpc-netty', version: grpcVersion
6565
implementation group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25'
6666
implementation group: 'org.bouncycastle', name: 'bcprov-jdk18on', version: '1.79'
67+
implementation group: 'org.bouncycastle', name: 'bcpkix-jdk18on', version: '1.79'
68+
6769
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.4'
6870
implementation group: 'commons-cli', name: 'commons-cli', version: '1.5.0'
6971

@@ -72,7 +74,9 @@ dependencies {
7274
annotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.12'
7375

7476
implementation group: 'dnsjava', name: 'dnsjava', version: '3.6.2'
75-
implementation group: 'org.web3j', name: 'crypto', version: '5.0.0'
77+
implementation group: 'org.web3j', name: 'crypto', version: '5.0.0',{
78+
exclude group: 'org.bouncycastle', module: 'bcprov-jdk15on'
79+
}
7680
implementation('software.amazon.awssdk:route53:2.18.41', {
7781
exclude group: 'io.netty', module: 'netty-codec-http2'
7882
exclude group: 'io.netty', module: 'netty-codec-http'
@@ -85,7 +89,10 @@ dependencies {
8589
exclude group: 'io.netty', module: 'netty-transport-classes-epoll'
8690
exclude group: 'io.netty', module: 'netty-transport-native-unix-common'
8791
})
88-
implementation group: 'com.aliyun', name: 'alidns20150109', version: '3.0.1'
92+
implementation group: 'com.aliyun', name: 'alidns20150109', version: '3.0.1',{
93+
exclude group: 'org.bouncycastle', module: 'bcprov-jdk15on'
94+
exclude group: 'org.bouncycastle', module: 'bcpkix-jdk15on'
95+
}
8996
}
9097

9198
tasks.matching { it instanceof Test }.all {

0 commit comments

Comments
 (0)