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/78a10029 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/78a10029 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/78a10029 Branch: refs/heads/trunk Commit: 78a10029ec5b2ecc7b9448be6dc6a1875196a68f Parents: 46c93453 Author: Arpit Agarwal <[email protected]> Authored: Mon Feb 26 13:56:53 2018 -0800 Committer: Arpit Agarwal <[email protected]> Committed: Mon Feb 26 13:56:53 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/78a10029/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 12fe971..8aae2c7 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]
