michalcukierman commented on issue #21297:
URL: https://github.com/apache/pulsar/issues/21297#issuecomment-2447757877

   To use this with Quarkus, you’ll need to add the following dependency:
   
   ```xml
       <!-- Use an alternative package because Quarkus excludes 
javax.annotation-api after build -->
       <dependency>
         <groupId>org.apache.tomcat</groupId>
         <artifactId>tomcat-annotations-api</artifactId>
       </dependency>
   ```
   
   This is necessary because `javax.annotation-api` is removed from the build 
artifact by Quarkus.
   What's more - the annotation API is often available in recent versions 
(using Jakarta) in the project classpaths, so relying on the deprecated 
`javax.annotation` can be inconvenient. 
   
   Although this isn’t a critical issue, I believe it may make it progressively 
more challenging to integrate admin-client with codebases over time.
   
   
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to