From a01d61b210dcd4874467262acc636fdefc40a055 Mon Sep 17 00:00:00 2001 From: Robert Varga Date: Wed, 18 Mar 2020 14:19:03 +0100 Subject: [PATCH] Require JDT annotations transitively We are using these in return values and generally in APIs, make sure we require them transitively. Change-Id: I78756188922fe8956d373ad98089c886e241b9e5 Signed-off-by: Robert Varga --- yang/yang-common/src/main/java/module-info.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yang/yang-common/src/main/java/module-info.java b/yang/yang-common/src/main/java/module-info.java index 967f1f9bc4..7134b39f92 100644 --- a/yang/yang-common/src/main/java/module-info.java +++ b/yang/yang-common/src/main/java/module-info.java @@ -31,7 +31,7 @@ module org.opendaylight.yangtools.yang.common { requires org.slf4j; // Annotations + requires static transitive org.eclipse.jdt.annotation; requires static com.github.spotbugs.annotations; - requires static org.eclipse.jdt.annotation; requires static org.checkerframework.checker.qual; } -- 2.36.6