Populate data/ hierarchy
[yangtools.git] / yang / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11
12     <parent>
13         <groupId>org.opendaylight.odlparent</groupId>
14         <artifactId>odlparent-lite</artifactId>
15         <version>9.0.0</version>
16         <relativePath/>
17     </parent>
18
19     <modelVersion>4.0.0</modelVersion>
20     <groupId>org.opendaylight.yangtools</groupId>
21     <artifactId>yang-aggregator</artifactId>
22     <version>7.0.0-SNAPSHOT</version>
23     <packaging>pom</packaging>
24
25     <properties>
26         <maven.deploy.skip>true</maven.deploy.skip>
27         <maven.install.skip>true</maven.install.skip>
28     </properties>
29
30     <modules>
31         <!-- FIXME: organize these into groups -->
32         <module>yang-common</module>
33         <module>yang-common-netty</module>
34         <module>yang-data-codec-binfmt</module>
35         <module>yang-data-codec-gson</module>
36         <module>yang-data-codec-xml</module>
37         <module>yang-model-export</module>
38
39         <!-- YANG XPath API and implementation -->
40         <module>yang-xpath-api</module>
41         <module>yang-xpath-antlr</module>
42         <!-- FIXME: rename to yang-xpath-ri -->
43         <module>yang-xpath-impl</module>
44
45         <!-- RFC7950 YANG model and reference implementation -->
46         <module>yang-model-api</module>
47         <module>yang-model-spi</module>
48         <module>yang-model-ri</module>
49         <module>yang-model-util</module>
50
51         <!-- YANG parser end-user API -->
52         <module>yang-parser-api</module>
53         <module>yang-test-util</module>
54
55         <!-- YANG parser reference implementation -->
56         <module>yang-parser-impl</module>
57
58         <!-- YANG repository API and implementions -->
59         <module>yang-repo-api</module>
60         <module>yang-repo-spi</module>
61         <module>yang-repo-fs</module>
62
63         <!-- Metamodel statement reactor -->
64         <module>yang-parser-spi</module>
65         <module>yang-parser-reactor</module>
66
67         <!-- Combined RFC6020/RFC7960 metamodel implementation -->
68         <module>yang-parser-antlr</module>
69         <module>yang-parser-rfc7950</module>
70
71         <!-- OpenConfig (semantic version, hashed value) metamodel support -->
72         <module>openconfig-model-api</module>
73         <!-- OpenConfig hashed value parser support. Semantic version support
74              is integrated in yang-parser-rfc7950. -->
75         <module>openconfig-parser-support</module>
76
77         <!-- OpenDaylight messy extensions -->
78         <module>odlext-model-api</module>
79         <module>odlext-parser-support</module>
80
81         <!-- NETCONF messy extensions -->
82         <module>rfc6241-model-api</module>
83         <module>rfc6241-parser-support</module>
84
85         <!-- NACM metamodel support -->
86         <module>rfc6536-model-api</module>
87         <module>rfc6536-parser-support</module>
88
89         <!-- SMIv2-to-YANG translations support -->
90         <module>rfc6643-model-api</module>
91         <module>rfc6643-parser-support</module>
92
93         <!-- Metadata (annotation) metamodel support -->
94         <module>rfc7952-data-api</module>
95         <module>rfc7952-data-util</module>
96         <module>rfc7952-model-api</module>
97         <module>rfc7952-parser-support</module>
98
99         <!-- RFC8040 (yang-data) metamodel support -->
100         <module>rfc8040-model-api</module>
101         <module>rfc8040-parser-support</module>
102
103         <!-- RFC8528 (mount-point) metamodel support -->
104         <module>rfc8528-data-api</module>
105         <module>rfc8528-data-util</module>
106         <module>rfc8528-model-api</module>
107         <module>rfc8528-parser-support</module>
108     </modules>
109
110 </project>