Skip to content
This repository was archived by the owner on Jan 13, 2025. It is now read-only.

Commit 6da4541

Browse files
authored
Merge pull request #24 from AntChainOpenLabs/fix/update-bc-version
[fix][*][*]: update bc version
2 parents f75dc9c + 0a24cfe commit 6da4541

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

pom.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
<properties>
2121
<java.version>8</java.version>
22-
<pluginserver.version>0.2.3</pluginserver.version>
22+
<pluginserver.version>${project.version}</pluginserver.version>
2323
<grpc-starter.version>2.15.0.RELEASE</grpc-starter.version>
2424
<netty-tcnative-boringssl-static.version>2.0.59.Final</netty-tcnative-boringssl-static.version>
2525
<protobuf.version>3.19.1</protobuf.version>
@@ -38,6 +38,7 @@
3838
<jetty.alpnAgent.version>2.0.0</jetty.alpnAgent.version>
3939
<snake.yaml.version>2.2</snake.yaml.version>
4040
<logback.classic.version>1.2.13</logback.classic.version>
41+
<bc.version>1.78</bc.version>
4142
<jetty.alpnAgent.path>${settings.localRepository}/org/mortbay/jetty/alpn/jetty-alpn-agent/${jetty.alpnAgent.version}/jetty-alpn-agent-${jetty.alpnAgent.version}.jar</jetty.alpnAgent.path>
4243
</properties>
4344

@@ -188,6 +189,11 @@
188189
<artifactId>fastjson</artifactId>
189190
<version>${fastjson.version}</version>
190191
</dependency>
192+
<dependency>
193+
<groupId>org.bouncycastle</groupId>
194+
<artifactId>bcprov-jdk18on</artifactId>
195+
<version>${bc.version}</version>
196+
</dependency>
191197
</dependencies>
192198
</dependencyManagement>
193199

ps-pluginmanager/pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,16 @@
3838
<groupId>cn.bitfactory</groupId>
3939
<artifactId>bif-chain-sdk</artifactId>
4040
</exclusion>
41+
<exclusion>
42+
<groupId>org.bouncycastle</groupId>
43+
<artifactId>bcprov-jdk18on</artifactId>
44+
</exclusion>
4145
</exclusions>
4246
</dependency>
47+
<dependency>
48+
<groupId>org.bouncycastle</groupId>
49+
<artifactId>bcprov-jdk18on</artifactId>
50+
</dependency>
4351
<dependency>
4452
<groupId>com.alipay.antchain.bridge</groupId>
4553
<artifactId>ps-service</artifactId>

0 commit comments

Comments
 (0)