Populate model/ 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
38         <!-- YANG XPath API and implementation -->
39         <module>yang-xpath-api</module>
40         <module>yang-xpath-antlr</module>
41         <!-- FIXME: rename to yang-xpath-ri -->
42         <module>yang-xpath-impl</module>
43
44         <!-- YANG parser end-user API -->
45         <module>yang-parser-api</module>
46         <module>yang-test-util</module>
47
48         <!-- YANG parser reference implementation -->
49         <module>yang-parser-impl</module>
50
51         <!-- YANG repository API and implementions -->
52         <module>yang-repo-api</module>
53         <module>yang-repo-spi</module>
54         <module>yang-repo-fs</module>
55
56         <!-- Metamodel statement reactor -->
57         <module>yang-parser-spi</module>
58         <module>yang-parser-reactor</module>
59
60         <!-- Combined RFC6020/RFC7960 metamodel implementation -->
61         <module>yang-parser-antlr</module>
62         <module>yang-parser-rfc7950</module>
63
64         <!-- OpenConfig hashed value parser support. Semantic version support
65              is integrated in yang-parser-rfc7950. -->
66         <module>openconfig-parser-support</module>
67
68         <!-- OpenDaylight messy extensions -->
69         <module>odlext-parser-support</module>
70
71         <!-- NETCONF messy extensions -->
72         <module>rfc6241-parser-support</module>
73
74         <!-- NACM metamodel support -->
75         <module>rfc6536-parser-support</module>
76
77         <!-- SMIv2-to-YANG translations support -->
78         <module>rfc6643-parser-support</module>
79
80         <!-- Metadata (annotation) metamodel support -->
81         <module>rfc7952-data-api</module>
82         <module>rfc7952-data-util</module>
83         <module>rfc7952-parser-support</module>
84
85         <!-- RFC8040 (yang-data) metamodel support -->
86         <module>rfc8040-parser-support</module>
87
88         <!-- RFC8528 (mount-point) metamodel support -->
89         <module>rfc8528-data-api</module>
90         <module>rfc8528-data-util</module>
91         <module>rfc8528-parser-support</module>
92     </modules>
93
94 </project>