mneethiraj commented on code in PR #882:
URL: https://github.com/apache/ranger/pull/882#discussion_r2969245255
##########
security-admin/pom.xml:
##########
@@ -539,6 +539,12 @@
<groupId>org.apache.ranger</groupId>
<artifactId>ranger-plugins-common</artifactId>
<version>${project.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>javax.ws.rs</groupId>
+ <artifactId>jsr311-api</artifactId>
+ </exclusion>
+ </exclusions>
Review Comment:
`javax.ws.rs.*` classes used in module's sources are included in
`jersey-bundle`, hence excluding `jsr311-api` transitive dependency.
##########
plugin-kms/pom.xml:
##########
@@ -55,6 +55,12 @@
<groupId>org.apache.ranger</groupId>
<artifactId>ranger-plugins-common</artifactId>
<version>${project.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>javax.ws.rs</groupId>
+ <artifactId>jsr311-api</artifactId>
+ </exclusion>
+ </exclusions>
Review Comment:
`javax.ws.rs.*` classes used in module's sources are included in
`jersey-bundle`, hence excluding `jsr311-api` transitive dependency.
--
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]