Add support for formatting EffectiveModelContext
[mdsal.git] / yanglib / mdsal-yanglib-rfc8525 / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2019 PANTHEON.tech, s.r.o. 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     <modelVersion>4.0.0</modelVersion>
13     <parent>
14         <groupId>org.opendaylight.mdsal</groupId>
15         <artifactId>dom-parent</artifactId>
16         <version>6.0.8-SNAPSHOT</version>
17         <relativePath>../../dom/dom-parent</relativePath>
18     </parent>
19
20     <artifactId>mdsal-yanglib-rfc8525</artifactId>
21     <version>0.11.8-SNAPSHOT</version>
22     <packaging>bundle</packaging>
23
24     <dependencies>
25         <dependency>
26             <groupId>org.opendaylight.mdsal</groupId>
27             <artifactId>mdsal-yanglib-api</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
31             <artifactId>rfc8525</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.opendaylight.yangtools</groupId>
35             <artifactId>yang-parser-api</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>org.opendaylight.mdsal</groupId>
39             <artifactId>mdsal-binding-runtime-api</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.opendaylight.mdsal</groupId>
43             <artifactId>mdsal-binding-dom-codec-api</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>org.kohsuke.metainf-services</groupId>
47             <artifactId>metainf-services</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>javax.inject</groupId>
51             <artifactId>javax.inject</artifactId>
52             <optional>true</optional>
53         </dependency>
54         <dependency>
55             <groupId>org.osgi</groupId>
56             <artifactId>osgi.cmpn</artifactId>
57         </dependency>
58
59         <dependency>
60             <groupId>org.opendaylight.yangtools</groupId>
61             <artifactId>yang-parser-impl</artifactId>
62             <scope>test</scope>
63         </dependency>
64         <dependency>
65             <groupId>org.opendaylight.mdsal</groupId>
66             <artifactId>mdsal-binding-runtime-spi</artifactId>
67             <scope>test</scope>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.mdsal</groupId>
71             <artifactId>mdsal-binding-dom-codec</artifactId>
72             <scope>test</scope>
73         </dependency>
74         <dependency>
75             <groupId>org.opendaylight.mdsal</groupId>
76             <artifactId>mdsal-binding-generator-impl</artifactId>
77             <scope>test</scope>
78         </dependency>
79     </dependencies>
80
81     <build>
82         <plugins>
83             <plugin>
84                 <groupId>org.apache.felix</groupId>
85                 <artifactId>maven-bundle-plugin</artifactId>
86                 <configuration>
87                     <instructions>
88                         <Automatic-Module-Name>org.opendaylight.mdsal.yanglib.rfc8525</Automatic-Module-Name>
89                     </instructions>
90                 </configuration>
91             </plugin>
92         </plugins>
93     </build>
94     <scm>
95         <connection>scm:git:ssh://git.opendaylight.org:29418/mdsal.git</connection>
96         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/mdsal.git</developerConnection>
97         <url>https://wiki.opendaylight.org/view/MD-SAL:Main</url>
98         <tag>HEAD</tag>
99     </scm>
100 </project>