Refactor DOMYangTextSourceProvider
[mdsal.git] / dom / mdsal-dom-api / src / main / java / module-info.java
index 20015aef5b6fa51eb181df4d12956bf86c493d2b..b253ca497c35a29fd618841c49a23e4809a26ffc 100644 (file)
@@ -9,13 +9,17 @@ module org.opendaylight.mdsal.dom.api {
     exports org.opendaylight.mdsal.dom.api;
     exports org.opendaylight.mdsal.dom.api.query;
 
+    requires transitive com.google.common;
+    requires transitive org.opendaylight.yangtools.yang.common;
     requires transitive org.opendaylight.yangtools.yang.data.api;
+    requires transitive org.opendaylight.yangtools.yang.data.tree.api;
     requires transitive org.opendaylight.yangtools.yang.model.api;
     requires transitive org.opendaylight.mdsal.common.api;
-    requires org.opendaylight.yangtools.concepts;
+    requires transitive org.opendaylight.yangtools.concepts;
     requires org.opendaylight.yangtools.util;
 
     // Annotations
-    requires static transitive org.eclipse.jdt.annotation;
     requires static com.github.spotbugs.annotations;
+    requires static transitive org.checkerframework.checker.qual;
+    requires static transitive org.eclipse.jdt.annotation;
 }