adoroszlai commented on code in PR #4497: URL: https://github.com/apache/ozone/pull/4497#discussion_r1152780358
########## hadoop-ozone/ozone-manager/pom.xml: ########## @@ -157,6 +157,13 @@ https://maven.apache.org/xsd/maven-4.0.0.xsd"> <artifactId>jersey-client</artifactId> </dependency> + <!-- Overriding ranger-intg jackson version --> + <dependency> + <groupId>org.codehaus.jackson</groupId> + <artifactId>jackson-core-asl</artifactId> + <version>${jackson1.version}</version> + </dependency> Review Comment: This is what Ranger brings without the exclusion: ``` [INFO] | +- org.codehaus.jackson:jackson-jaxrs:jar:1.9.13:compile [INFO] | | +- org.codehaus.jackson:jackson-core-asl:jar:1.9.13:compile [INFO] | | \- org.codehaus.jackson:jackson-mapper-asl:jar:1.9.13:compile ``` If we want to add explicit dependency, I think we should add `jackson-jaxrs`, not `jackson-core-asl`. -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
