HADOOP-15895. [JDK9+] Add missing javax.annotation-api dependency to hadoop-yarn-csi.
Contributed by Takanobu Asanuma. Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/d174b916 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/d174b916 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/d174b916 Branch: refs/heads/HDFS-13532 Commit: d174b916352ffe701058f3bdae433c3f24eb37c2 Parents: e0ac308 Author: Steve Loughran <[email protected]> Authored: Thu Nov 1 10:11:21 2018 +0000 Committer: Steve Loughran <[email protected]> Committed: Thu Nov 1 12:56:20 2018 +0000 ---------------------------------------------------------------------- hadoop-project/pom.xml | 5 +++++ hadoop-yarn-project/hadoop-yarn/hadoop-yarn-csi/pom.xml | 5 +++++ 2 files changed, 10 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/d174b916/hadoop-project/pom.xml ---------------------------------------------------------------------- diff --git a/hadoop-project/pom.xml b/hadoop-project/pom.xml index 2247109..937f21f 100644 --- a/hadoop-project/pom.xml +++ b/hadoop-project/pom.xml @@ -1474,6 +1474,11 @@ <artifactId>javax.activation-api</artifactId> <version>1.2.0</version> </dependency> + <dependency> + <groupId>javax.annotation</groupId> + <artifactId>javax.annotation-api</artifactId> + <version>1.3.2</version> + </dependency> </dependencies> </dependencyManagement> http://git-wip-us.apache.org/repos/asf/hadoop/blob/d174b916/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-csi/pom.xml ---------------------------------------------------------------------- diff --git a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-csi/pom.xml b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-csi/pom.xml index b58b0fe..41f5098 100644 --- a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-csi/pom.xml +++ b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-csi/pom.xml @@ -83,6 +83,11 @@ <type>test-jar</type> <scope>test</scope> </dependency> + <dependency> + <groupId>javax.annotation</groupId> + <artifactId>javax.annotation-api</artifactId> + <scope>compile</scope> + </dependency> </dependencies> <build> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
