Populate xpath/ hierarchy
[yangtools.git] / yang / yang-xpath-impl / src / main / java / module-info.java
diff --git a/yang/yang-xpath-impl/src/main/java/module-info.java b/yang/yang-xpath-impl/src/main/java/module-info.java
deleted file mode 100644 (file)
index f12145f..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
- * Copyright (c) 2020 PANTHEON.tech, s.r.o. and others.  All rights reserved.
- *
- * This program and the accompanying materials are made available under the
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,
- * and is available at http://www.eclipse.org/legal/epl-v10.html
- */
-import org.opendaylight.yangtools.yang.xpath.api.YangXPathParserFactory;
-import org.opendaylight.yangtools.yang.xpath.impl.AntlrXPathParserFactory;
-
-module org.opendaylight.yangtools.yang.xpath.impl {
-    exports org.opendaylight.yangtools.yang.xpath.impl.di;
-
-    provides YangXPathParserFactory with AntlrXPathParserFactory;
-
-    requires java.xml;
-    requires org.opendaylight.yangtools.yang.common;
-    requires org.opendaylight.yangtools.yang.xpath.api;
-    requires org.opendaylight.yangtools.yang.xpath.antlr;
-    requires org.slf4j;
-
-    // Annotations
-    requires static javax.inject;
-    requires static metainf.services;
-    requires static org.eclipse.jdt.annotation;
-    requires static org.osgi.service.component.annotations;
-}