Another mdsal-dom-api module update 56/98556/1
authorRobert Varga <robert.varga@pantheon.tech>
Mon, 15 Nov 2021 12:14:49 +0000 (13:14 +0100)
committerRobert Varga <nite@hq.sk>
Sun, 21 Nov 2021 16:04:19 +0000 (16:04 +0000)
We are using annotations in interfaces, hence we need to require
them transitively.

Change-Id: Ibc6b02f5e02c3e7533a9272daa1090569234e11a
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
(cherry picked from commit 54b2e91548e5121f9cc1ec8d1982f768dafe7ea5)

dom/mdsal-dom-api/src/main/java/module-info.java

index af70dff12cde3296783386eeeb8e97c5ff6a1b89..9961f54e6e699e7d415defd49e901dd3cc837603 100644 (file)
@@ -19,6 +19,7 @@ module org.opendaylight.mdsal.dom.api {
     requires org.opendaylight.yangtools.util;
 
     // Annotations
+    requires static transitive com.github.spotbugs.annotations;
+    requires static transitive org.checkerframework.checker.qual;
     requires static transitive org.eclipse.jdt.annotation;
-    requires static com.github.spotbugs.annotations;
 }