Update module-info.java
[yangtools.git] / yang / yang-parser-spi / src / main / java / module-info.java
index c350723b57bfa05bae7fe7193e6d164abe3afeea..7d0babf5c20d5845d490a76043e71a7f02db8089 100644 (file)
@@ -11,14 +11,14 @@ 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 transitive org.opendaylight.yangtools.yang.repo.api;
-    requires com.google.common;
-    requires org.opendaylight.yangtools.concepts;
-    requires 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;
 }