Require JDT annotations transitively 99/88299/1
authorRobert Varga <robert.varga@pantheon.tech>
Wed, 18 Mar 2020 13:19:03 +0000 (14:19 +0100)
committerRobert Varga <nite@hq.sk>
Wed, 18 Mar 2020 13:56:49 +0000 (13:56 +0000)
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 <robert.varga@pantheon.tech>
yang/yang-common/src/main/java/module-info.java

index 967f1f9bc4b49bbc1a1d2e54681bc2feb4a6d83e..7134b39f9243c856b200ccb3a3510a75e1bef0ee 100644 (file)
@@ -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;
 }