This is an automated email from the ASF dual-hosted git repository. mehul pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/ranger.git
commit 9b0ec4a276dbdcef6550dce6c039f40abff9a7bb Author: mateenmansoori <[email protected]> AuthorDate: Thu Apr 29 19:51:02 2021 +0530 RANGER-3263 : libthrift 0.14.x exclude tomcat-embed-core from dependency Signed-off-by: Mehul Parikh <[email protected]> --- security-admin/pom.xml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/security-admin/pom.xml b/security-admin/pom.xml index 02edf91..f64e747 100644 --- a/security-admin/pom.xml +++ b/security-admin/pom.xml @@ -405,6 +405,12 @@ <groupId>org.apache.thrift</groupId> <artifactId>libthrift</artifactId> <version>${libthrift.version}</version> + <exclusions> + <exclusion> + <groupId>org.apache.tomcat.embed</groupId> + <artifactId>tomcat-embed-core</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.hadoop</groupId>
