Skip to content

Commit

Permalink
[FLINK-35196] [Connector / Pulsar] Fix bouncycastle class not found
Browse files Browse the repository at this point in the history
  • Loading branch information
wenbingshen committed Apr 23, 2024
1 parent 5548950 commit 8e25db1
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions flink-sql-connector-pulsar/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,10 @@ under the License.
<include>org.apache.pulsar:pulsar-client-admin-api</include>
<include>org.apache.pulsar:pulsar-client-all</include>
<include>org.apache.pulsar:pulsar-client-api</include>
<include>org.bouncycastle:bcpkix-jdk15on</include>
<include>org.bouncycastle:bcprov-ext-jdk15on</include>
<include>org.bouncycastle:bcprov-jdk15on</include>
<include>org.bouncycastle:bcutil-jdk15on</include>
<include>org.bouncycastle:bcpkix-jdk18on</include>
<include>org.bouncycastle:bcprov-ext-jdk18on</include>
<include>org.bouncycastle:bcprov-jdk18on</include>
<include>org.bouncycastle:bcutil-jdk18on</include>
</includes>
</artifactSet>
<filters>
Expand Down
8 changes: 4 additions & 4 deletions flink-sql-connector-pulsar/src/main/resources/META-INF/NOTICE
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ This project bundles the following dependencies under the Apache Software Licens
This project bundles the following dependencies under the Bouncy Castle license.
See bundled license files for details.

- org.bouncycastle:bcpkix-jdk15on:1.69
- org.bouncycastle:bcprov-ext-jdk15on:1.69
- org.bouncycastle:bcprov-jdk15on:1.69
- org.bouncycastle:bcutil-jdk15on:1.69
- org.bouncycastle:bcpkix-jdk18on:1.78
- org.bouncycastle:bcprov-ext-jdk18on:1.78
- org.bouncycastle:bcprov-jdk18on:1.78
- org.bouncycastle:bcutil-jdk18on:1.78
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ under the License.
<flink-ci-tools.version>1.18.0</flink-ci-tools.version>
<pulsar.version>3.0.2</pulsar.version>
<scala.binary.version>2.12</scala.binary.version>
<bouncycastle.version>1.69</bouncycastle.version>
<bouncycastle.version>1.78</bouncycastle.version>

<scala-reflect.version>2.12.7</scala-reflect.version>
<scala-library.version>2.12.7</scala-library.version>
Expand Down Expand Up @@ -408,13 +408,13 @@ under the License.
<!-- For dependency convergence -->
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-ext-jdk15on</artifactId>
<artifactId>bcprov-ext-jdk18on</artifactId>
<version>${bouncycastle.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk15on</artifactId>
<artifactId>bcpkix-jdk18on</artifactId>
<version>${bouncycastle.version}</version>
<scope>compile</scope>
</dependency>
Expand Down

0 comments on commit 8e25db1

Please sign in to comment.