From 9a77aad60cfccd2a3fadc97225f09242f484b8d5 Mon Sep 17 00:00:00 2001 From: Sean Busbey Date: Wed, 16 Oct 2019 10:31:47 -0500 Subject: [PATCH] HBASE-19663 javadoc creation needs jsr305. Some javadoc invocations require that annotations we reference can have any classes they reference resolved. This includes annotations _they_ have, even though annotations are normally optional. In some cases this showed up as javax.annotation.meta.TypeQualifierNickname not found, because some findbugs annotations use it. Other times it was javax.annotation.concurrent.Immutable not found, because some old guava versions use it. (updated for master branch by doing the config in report config instead of plugin) Signed-off-by: Peter Somogyi Signed-off-by: Michael Stack (cherry picked from commit f0d66273cdae9ada86b499200042304e22aa1a25) --- pom.xml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/pom.xml b/pom.xml index 1522f2eb919..e314c9a1704 100755 --- a/pom.xml +++ b/pom.xml @@ -4016,6 +4016,12 @@ hamcrest-core ${hamcrest.version} + + + com.google.code.findbugs + jsr305 + 3.0.2 + false @@ -4059,6 +4065,12 @@ hamcrest-core ${hamcrest.version} + + + com.google.code.findbugs + jsr305 + 3.0.2 + false @@ -4114,6 +4126,12 @@ hamcrest-core ${hamcrest.version} + + + com.google.code.findbugs + jsr305 + 3.0.2 + false @@ -4168,6 +4186,12 @@ hamcrest-core ${hamcrest.version} + + + com.google.code.findbugs + jsr305 + 3.0.2 + false