Clean up yang-xpath-impl warnings
[yangtools.git] / xpath / yang-xpath-impl / src / main / java / module-info.java
index 2dd0c08780bb4eef17a0e343a81342b625f676fa..7463ee40afd26aadd548c340d54a1a7a43fb357c 100644 (file)
@@ -8,20 +8,23 @@
 import org.opendaylight.yangtools.yang.xpath.api.YangXPathParserFactory;
 import org.opendaylight.yangtools.yang.xpath.impl.AntlrXPathParserFactory;
 
+/**
+ * Reference implementation of YANG XPath parser.
+ */
 module org.opendaylight.yangtools.yang.xpath.impl {
     exports org.opendaylight.yangtools.yang.xpath.impl.di;
 
     provides YangXPathParserFactory with AntlrXPathParserFactory;
 
+    requires transitive org.opendaylight.yangtools.yang.xpath.api;
     requires java.xml;
     requires org.antlr.antlr4.runtime;
     requires org.opendaylight.yangtools.yang.common;
-    requires org.opendaylight.yangtools.yang.xpath.api;
     requires org.slf4j;
 
     // Annotations
+    requires static transitive javax.inject;
     requires static com.github.spotbugs.annotations;
-    requires static javax.inject;
     requires static org.eclipse.jdt.annotation;
     requires static org.kohsuke.metainf_services;
     requires static org.osgi.service.component.annotations;