Add RFC6643 parser support
[yangtools.git] / yang / pom.xml
index 1f329bb61a453e6663a2a4a090b6da1e083ea93b..d25a63188d71563744ccca15c2ff6881d551d40c 100644 (file)
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>odlparent-lite</artifactId>
-        <version>2.0.5</version>
+        <version>6.0.11</version>
         <relativePath/>
     </parent>
 
     <modelVersion>4.0.0</modelVersion>
     <groupId>org.opendaylight.yangtools</groupId>
     <artifactId>yang-aggregator</artifactId>
-    <version>2.0.0-SNAPSHOT</version>
+    <version>4.0.14-SNAPSHOT</version>
     <packaging>pom</packaging>
 
     <modules>
         <module>yang-common</module>
+        <module>yang-common-netty</module>
         <module>yang-data-api</module>
+        <module>yang-data-xpath-api</module>
         <module>yang-data-jaxen</module>
         <module>yang-data-util</module>
         <module>yang-data-impl</module>
         <module>yang-data-transform</module>
+        <module>yang-data-codec-binfmt</module>
         <module>yang-data-codec-gson</module>
         <module>yang-data-codec-xml</module>
         <module>yang-maven-plugin</module>
         <module>yang-maven-plugin-spi</module>
         <module>yang-model-api</module>
         <module>yang-model-export</module>
-        <module>yang-model-immutable</module>
         <module>yang-model-util</module>
+        <module>yang-model-util-ut</module>
+
+        <!-- YANG XPath API and implementation -->
+        <module>yang-xpath-api</module>
+        <module>yang-xpath-antlr</module>
+        <module>yang-xpath-impl</module>
 
         <!-- End-user utility for validating YANG models -->
         <module>yang-model-validator</module>
@@ -54,6 +62,7 @@
         <module>yang-parser-reactor</module>
 
         <!-- Combined RFC6020/RFC7960 metamodel implementation -->
+        <module>yang-parser-antlr</module>
         <module>yang-parser-rfc7950</module>
 
         <!-- OpenConfig (semantic version, hashed value) metamodel support -->
 
         <!-- OpenDaylight messy extensions -->
         <module>odlext-model-api</module>
+        <module>odlext-parser-support</module>
+
+        <!-- NETCONF messy extensions -->
+        <module>rfc6241-model-api</module>
+        <module>rfc6241-parser-support</module>
+
+        <!-- NACM metamodel support -->
+        <module>rfc6536-model-api</module>
+        <module>rfc6536-parser-support</module>
+
+        <!-- SMIv2-to-YANG translations support -->
+        <module>rfc6643-model-api</module>
+        <module>rfc6643-parser-support</module>
 
         <!-- Metadata (annotation) metamodel support -->
+        <module>rfc7952-data-api</module>
+        <module>rfc7952-data-util</module>
         <module>rfc7952-model-api</module>
         <module>rfc7952-parser-support</module>
 
         <!-- RFC8040 (yang-data) metamodel support -->
         <module>rfc8040-model-api</module>
         <module>rfc8040-parser-support</module>
+
+        <!-- RFC8528 (mount-point) metamodel support -->
+        <module>rfc8528-data-api</module>
+        <module>rfc8528-data-util</module>
+        <module>rfc8528-model-api</module>
+        <module>rfc8528-parser-support</module>
     </modules>
 
-    <!--
-        Maven Site Configuration
-
-        The following configuration is necessary for maven-site-plugin to
-        correctly identify the correct deployment path for OpenDaylight Maven
-        sites.
-    -->
-    <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
-
-    <distributionManagement>
-        <site>
-            <id>opendaylight-site</id>
-            <url>${nexus.site.url}/${project.artifactId}/</url>
-        </site>
-    </distributionManagement>
 </project>