Replies: 1 comment 1 reply
-
This doesn't seem to be a bug. In Pulsar 3.2.x, you can use Pulsar BOM to align versions. Maven: <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): dependencies {
implementation enforcedPlatform('org.apache.pulsar:pulsar-bom:3.2.1')
} |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Search before asking
Read release policy
Version
pulsar java client 3.2.1
Minimal reproduce step
idea log :
idea show :
What did you expect to see?
?
What did you see instead?
?
Anything else?
?
Are you willing to submit a PR?
Beta Was this translation helpful? Give feedback.
All reactions