GitHub user lhotari added a comment to the discussion: pulsar java client 3.2.1 version , use pulsar client api 3.1.3 version? no same version ??
This doesn't seem to be a bug. In Pulsar 3.2.x, you can use [Pulsar BOM](https://github.com/apache/pulsar/blob/master/pip/pip-326.md) to align versions. Maven: ```xml <dependencyManagement> <dependencies> <dependency> <groupId>org.apache.pulsar</groupId> <artifactId>pulsar-bom</artifactId> <version>3.2.1</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> ``` Gradle (groovy syntax): ```groovy dependencies { implementation enforcedPlatform('org.apache.pulsar:pulsar-bom:3.2.1') } ``` GitHub link: https://github.com/apache/pulsar/discussions/22328#discussioncomment-8876861 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected]
