Teach YANG parser to retain DeclarationReference
[yangtools.git] / yang / yang-parser-spi / src / main / java / module-info.java
index fd35ac9643a85fbbf7a9b41f69933e2c40de0f6e..cc4b0fe48564f483a7dd3c734dc2c2e84739cf40 100644 (file)
@@ -11,11 +11,15 @@ module org.opendaylight.yangtools.yang.parser.spi {
     exports org.opendaylight.yangtools.yang.parser.spi.source;
     exports org.opendaylight.yangtools.yang.parser.spi.validation;
 
+    requires transitive com.google.common;
+    requires transitive org.opendaylight.yangtools.concepts;
+    requires transitive org.opendaylight.yangtools.yang.common;
     requires transitive org.opendaylight.yangtools.yang.model.api;
-    requires org.opendaylight.yangtools.yang.common;
+    requires transitive org.opendaylight.yangtools.yang.parser.api;
+    requires transitive org.opendaylight.yangtools.yang.repo.api;
     requires org.slf4j;
 
     // Annotations
+    requires static transitive org.eclipse.jdt.annotation;
     requires static com.github.spotbugs.annotations;
-    requires static org.eclipse.jdt.annotation;
 }