Repository: hadoop Updated Branches: refs/heads/branch-3.1 eb8765bbe -> 0ccd7138a
HADOOP-15265. Exclude json-smart explicitly in hadoop-auth avoid being pulled in transitively. Contributed by Nishant Bangarwa. Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/0ccd7138 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/0ccd7138 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/0ccd7138 Branch: refs/heads/branch-3.1 Commit: 0ccd7138a777edb606de4512d0cd6ef9bb1fee6d Parents: eb8765b Author: Arpit Agarwal <[email protected]> Authored: Mon Feb 26 13:56:53 2018 -0800 Committer: Arpit Agarwal <[email protected]> Committed: Mon Feb 26 13:58:54 2018 -0800 ---------------------------------------------------------------------- hadoop-common-project/hadoop-auth/pom.xml | 12 ++++++++++++ 1 file changed, 12 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/0ccd7138/hadoop-common-project/hadoop-auth/pom.xml ---------------------------------------------------------------------- diff --git a/hadoop-common-project/hadoop-auth/pom.xml b/hadoop-common-project/hadoop-auth/pom.xml index 9308d0c..9a9c116 100644 --- a/hadoop-common-project/hadoop-auth/pom.xml +++ b/hadoop-common-project/hadoop-auth/pom.xml @@ -110,9 +110,21 @@ <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk15on</artifactId> </exclusion> + <!-- HACK. Transitive dependency for nimbus-jose-jwt. Needed for + packaging. Please re-check this version when updating + nimbus-jose-jwt. Please read HADOOP-14903 for more details. + --> + <exclusion> + <groupId>net.minidev</groupId> + <artifactId>json-smart</artifactId> + </exclusion> </exclusions> </dependency> <dependency> + <groupId>net.minidev</groupId> + <artifactId>json-smart</artifactId> + </dependency> + <dependency> <groupId>org.apache.zookeeper</groupId> <artifactId>zookeeper</artifactId> </dependency> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
