This is an automated email from the ASF dual-hosted git repository.
martijnvisser pushed a commit to branch v3.0
in repository https://gitbox.apache.org/repos/asf/flink-connector-pulsar.git
The following commit(s) were added to refs/heads/v3.0 by this push:
new 78324dc [FLINK-30427][Connector/Pulsar] Correct scope for
bouncycastle dependencies to make sure they are bundled. Pulsar requires these,
per https://pulsar.apache.org/docs/2.10.x/security-bouncy-castle/
78324dc is described below
commit 78324dc30e934c033db25edd162491df35732d1f
Author: Martijn Visser <[email protected]>
AuthorDate: Thu Dec 15 13:45:40 2022 +0100
[FLINK-30427][Connector/Pulsar] Correct scope for bouncycastle dependencies
to make sure they are bundled. Pulsar requires these, per
https://pulsar.apache.org/docs/2.10.x/security-bouncy-castle/
---
pom.xml | 9 ++++-----
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/pom.xml b/pom.xml
index 47833a4..2fa2d4c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -443,23 +443,22 @@ under the License.
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.9</version>
- <scope>test</scope>
</dependency>
- <!-- For test dependency convergence -->
+ <!-- For dependency convergence -->
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-ext-jdk15on</artifactId>
<version>${bouncycastle.version}</version>
- <scope>test</scope>
+ <scope>compile</scope>
</dependency>
- <!-- For test dependency convergence -->
+ <!-- For dependency convergence -->
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk15on</artifactId>
<version>${bouncycastle.version}</version>
- <scope>test</scope>
+ <scope>compile</scope>
</dependency>
<!-- For dependency convergence -->