Skip to content

Commit

Permalink
Refactor dependency of bouncycastle
Browse files Browse the repository at this point in the history
  • Loading branch information
terrymanu committed Oct 21, 2023
1 parent ada485a commit 6700b58
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
16 changes: 15 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,12 @@

<calcite.version>1.35.0</calcite.version>
<immutables.version>2.9.3</immutables.version>
<bouncycastle.version>1.70</bouncycastle.version>

<javax.transaction.version>1.1</javax.transaction.version>

<netty.version>4.1.99.Final</netty.version>
<bouncycastle.version>1.70</bouncycastle.version>

<zookeeper.version>3.9.0</zookeeper.version>
<curator.version>5.5.0</curator.version>
<jetcd.version>0.7.6</jetcd.version>
Expand Down Expand Up @@ -289,6 +290,7 @@
<version>${immutables.version}</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>javax.transaction</groupId>
<artifactId>jta</artifactId>
Expand All @@ -302,6 +304,18 @@
<type>pom</type>
<scope>import</scope>
</dependency>

<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk15on</artifactId>
<version>${bouncycastle.version}</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bctls-jdk15on</artifactId>
<version>${bouncycastle.version}</version>
</dependency>

<dependency>
<groupId>org.apache.zookeeper</groupId>
<artifactId>zookeeper</artifactId>
Expand Down
2 changes: 0 additions & 2 deletions proxy/frontend/core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -99,12 +99,10 @@
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk15on</artifactId>
<version>${bouncycastle.version}</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bctls-jdk15on</artifactId>
<version>${bouncycastle.version}</version>
</dependency>
</dependencies>
</project>

0 comments on commit 6700b58

Please sign in to comment.