kumaab commented on code in PR #418: URL: https://github.com/apache/ranger/pull/418#discussion_r1861166908
########## knox-agent/pom.xml: ########## @@ -57,101 +107,66 @@ <groupId>net.minidev</groupId> <artifactId>json-smart</artifactId> </exclusion> + <exclusion> + <groupId>org.apache.knox</groupId> + <artifactId>gateway-util-common</artifactId> + </exclusion> <exclusion> <groupId>org.apache.zookeeper</groupId> <artifactId>zookeeper</artifactId> </exclusion> + <exclusion> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-util</artifactId> + </exclusion> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>*</artifactId> + </exclusion> </exclusions> </dependency> - <dependency> - <groupId>javax.servlet</groupId> - <artifactId>javax.servlet-api</artifactId> - <version>${javax.servlet.version}</version> - </dependency> - <dependency> - <groupId>org.glassfish.jersey.core</groupId> - <artifactId>jersey-client</artifactId> - </dependency> - <dependency> - <groupId>com.google.code.gson</groupId> - <artifactId>gson</artifactId> - </dependency> - <dependency> - <groupId>com.fasterxml.jackson.core</groupId> - <artifactId>jackson-core</artifactId> - <version>${fasterxml.jackson.version}</version> - </dependency> - <dependency> - <groupId>com.fasterxml.jackson.core</groupId> - <artifactId>jackson-annotations</artifactId> - <version>${fasterxml.jackson.version}</version> - </dependency> <dependency> <groupId>org.apache.ranger</groupId> - <artifactId>ranger-plugins-common</artifactId> + <artifactId>ranger-plugins-audit</artifactId> <version>${project.version}</version> <!-- TO DEBUG JERSEY2 code: uncomment this exclusion <exclusions><exclusion><artifactId>*</artifactId><groupId>*</groupId></exclusion></exclusions> --> </dependency> <dependency> <groupId>org.apache.ranger</groupId> - <artifactId>ranger-plugins-audit</artifactId> + <artifactId>ranger-plugins-common</artifactId> <version>${project.version}</version> <!-- TO DEBUG JERSEY2 code: uncomment this exclusion <exclusions><exclusion><artifactId>*</artifactId><groupId>*</groupId></exclusion></exclusions> --> </dependency> + <!-- The Jetty dependency is required as Knox is not using Jetty 9.3, which gets imported via Hadoop 3.0.0 --> <dependency> - <groupId>commons-collections</groupId> - <artifactId>commons-collections</artifactId> - <version>${commons.collections.version}</version> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-util</artifactId> + <version>${knox.jetty.version}</version> </dependency> <dependency> - <groupId>com.google.protobuf</groupId> - <artifactId>protobuf-java</artifactId> - <version>${protobuf-java.version}</version> + <groupId>org.glassfish.jersey.core</groupId> + <artifactId>jersey-client</artifactId> </dependency> <dependency> - <groupId>org.apache.hadoop</groupId> - <artifactId>hadoop-hdfs</artifactId> - <version>${hadoop.version}</version> - <exclusions> - <exclusion> - <groupId>log4j</groupId> - <artifactId>*</artifactId> - </exclusion> - <exclusion> - <groupId>org.slf4j</groupId> - <artifactId>*</artifactId> - </exclusion> - <exclusion> - <groupId>io.netty</groupId> - <artifactId>netty-all</artifactId> - </exclusion> - <exclusion> - <groupId>io.netty</groupId> - <artifactId>netty</artifactId> - </exclusion> - </exclusions> + <groupId>ch.qos.reload4j</groupId> + <artifactId>reload4j</artifactId> + <version>${reload4j.version}</version> + <scope>test</scope> </dependency> - <dependency> - <groupId>org.apache.httpcomponents</groupId> - <artifactId>httpcore</artifactId> - <version>${httpcomponents.httpcore.version}</version> - </dependency> - - <!-- Test --> <dependency> - <groupId>org.junit.jupiter</groupId> - <artifactId>junit-jupiter-api</artifactId> - <version>${junit.jupiter.version}</version> + <groupId>com.mycila.xmltool</groupId> + <artifactId>xmltool</artifactId> + <version>3.3</version> Review Comment: minor: can be kept in a variable. ########## knox-agent/pom.xml: ########## @@ -57,101 +107,66 @@ <groupId>net.minidev</groupId> <artifactId>json-smart</artifactId> </exclusion> + <exclusion> + <groupId>org.apache.knox</groupId> + <artifactId>gateway-util-common</artifactId> + </exclusion> <exclusion> <groupId>org.apache.zookeeper</groupId> <artifactId>zookeeper</artifactId> </exclusion> + <exclusion> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-util</artifactId> + </exclusion> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>*</artifactId> + </exclusion> </exclusions> </dependency> - <dependency> - <groupId>javax.servlet</groupId> - <artifactId>javax.servlet-api</artifactId> - <version>${javax.servlet.version}</version> - </dependency> - <dependency> - <groupId>org.glassfish.jersey.core</groupId> - <artifactId>jersey-client</artifactId> - </dependency> - <dependency> - <groupId>com.google.code.gson</groupId> - <artifactId>gson</artifactId> - </dependency> - <dependency> - <groupId>com.fasterxml.jackson.core</groupId> - <artifactId>jackson-core</artifactId> - <version>${fasterxml.jackson.version}</version> - </dependency> - <dependency> - <groupId>com.fasterxml.jackson.core</groupId> - <artifactId>jackson-annotations</artifactId> - <version>${fasterxml.jackson.version}</version> - </dependency> <dependency> <groupId>org.apache.ranger</groupId> - <artifactId>ranger-plugins-common</artifactId> + <artifactId>ranger-plugins-audit</artifactId> <version>${project.version}</version> <!-- TO DEBUG JERSEY2 code: uncomment this exclusion <exclusions><exclusion><artifactId>*</artifactId><groupId>*</groupId></exclusion></exclusions> --> </dependency> <dependency> <groupId>org.apache.ranger</groupId> - <artifactId>ranger-plugins-audit</artifactId> + <artifactId>ranger-plugins-common</artifactId> <version>${project.version}</version> <!-- TO DEBUG JERSEY2 code: uncomment this exclusion <exclusions><exclusion><artifactId>*</artifactId><groupId>*</groupId></exclusion></exclusions> --> </dependency> + <!-- The Jetty dependency is required as Knox is not using Jetty 9.3, which gets imported via Hadoop 3.0.0 --> <dependency> - <groupId>commons-collections</groupId> - <artifactId>commons-collections</artifactId> - <version>${commons.collections.version}</version> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-util</artifactId> + <version>${knox.jetty.version}</version> </dependency> <dependency> - <groupId>com.google.protobuf</groupId> - <artifactId>protobuf-java</artifactId> - <version>${protobuf-java.version}</version> + <groupId>org.glassfish.jersey.core</groupId> + <artifactId>jersey-client</artifactId> </dependency> <dependency> - <groupId>org.apache.hadoop</groupId> - <artifactId>hadoop-hdfs</artifactId> - <version>${hadoop.version}</version> - <exclusions> - <exclusion> - <groupId>log4j</groupId> - <artifactId>*</artifactId> - </exclusion> - <exclusion> - <groupId>org.slf4j</groupId> - <artifactId>*</artifactId> - </exclusion> - <exclusion> - <groupId>io.netty</groupId> - <artifactId>netty-all</artifactId> - </exclusion> - <exclusion> - <groupId>io.netty</groupId> - <artifactId>netty</artifactId> - </exclusion> - </exclusions> + <groupId>ch.qos.reload4j</groupId> + <artifactId>reload4j</artifactId> + <version>${reload4j.version}</version> + <scope>test</scope> </dependency> - <dependency> - <groupId>org.apache.httpcomponents</groupId> - <artifactId>httpcore</artifactId> - <version>${httpcomponents.httpcore.version}</version> - </dependency> - - <!-- Test --> <dependency> - <groupId>org.junit.jupiter</groupId> - <artifactId>junit-jupiter-api</artifactId> - <version>${junit.jupiter.version}</version> + <groupId>com.mycila.xmltool</groupId> + <artifactId>xmltool</artifactId> + <version>3.3</version> <scope>test</scope> </dependency> <dependency> - <groupId>org.junit.vintage</groupId> - <artifactId>junit-vintage-engine</artifactId> - <version>${junit.jupiter.version}</version> + <groupId>io.rest-assured</groupId> + <artifactId>rest-assured</artifactId> + <version>3.0.3</version> Review Comment: minor: can be kept in a variable. -- 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: dev-unsubscr...@ranger.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org