This is an automated email from the ASF dual-hosted git repository. jhelou pushed a commit to branch pulsar-authentication in repository https://gitbox.apache.org/repos/asf/james-project.git
commit 01e9ef7a7e320cc16ee4383285f688be6c7e8e2b Author: Jean Helou <[email protected]> AuthorDate: Tue Nov 8 23:21:01 2022 +0100 [JAMES-3687] pulls pulsar-client explicitely to enforce its version Without this the version is resolved throuh transitive dependencies which may be misaligned with the version of the admin client. This resulted in conflicts in the shaded netty brought in both clients. --- backends-common/pulsar/pom.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/backends-common/pulsar/pom.xml b/backends-common/pulsar/pom.xml index 678b44654c..24f3223097 100644 --- a/backends-common/pulsar/pom.xml +++ b/backends-common/pulsar/pom.xml @@ -85,6 +85,11 @@ <groupId>org.apache.commons</groupId> <artifactId>commons-configuration2</artifactId> </dependency> + <dependency> + <groupId>org.apache.pulsar</groupId> + <artifactId>pulsar-client</artifactId> + <version>2.9.3</version> + </dependency> <dependency> <groupId>org.apache.pulsar</groupId> <artifactId>pulsar-client-admin</artifactId> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
