Release netconf
[netconf.git] / plugins / sal-netconf-connector / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
4
5  This program and the accompanying materials are made available under the
6  terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <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">
10   <modelVersion>4.0.0</modelVersion>
11   <parent>
12     <groupId>org.opendaylight.netconf</groupId>
13     <artifactId>netconf-parent</artifactId>
14     <version>5.0.4</version>
15     <relativePath>../../parent</relativePath>
16   </parent>
17
18   <artifactId>sal-netconf-connector</artifactId>
19   <packaging>bundle</packaging>
20
21   <dependencies>
22     <dependency>
23       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
24       <artifactId>rfc8525</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>org.opendaylight.netconf.model</groupId>
28       <artifactId>rfc5277</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.opendaylight.netconf.model</groupId>
32       <artifactId>rfc6022</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>${project.groupId}</groupId>
36       <artifactId>netconf-client</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>${project.groupId}</groupId>
40       <artifactId>netconf-notifications-api</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.mdsal</groupId>
44       <artifactId>mdsal-binding-api</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.netconf</groupId>
48       <artifactId>netconf-dom-api</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.mdsal</groupId>
52       <artifactId>mdsal-binding-runtime-spi</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.mdsal</groupId>
56       <artifactId>mdsal-dom-spi</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.yangtools</groupId>
60       <artifactId>yang-data-impl</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.yangtools</groupId>
64       <artifactId>yang-model-api</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.yangtools</groupId>
68       <artifactId>yang-model-util</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.yangtools</groupId>
72       <artifactId>yang-parser-impl</artifactId>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.yangtools</groupId>
76       <artifactId>yang-repo-fs</artifactId>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.yangtools</groupId>
80       <artifactId>yang-data-codec-gson</artifactId>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.yangtools</groupId>
84       <artifactId>yang-data-codec-xml</artifactId>
85     </dependency>
86     <dependency>
87       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
88       <artifactId>rfc6991-ietf-inet-types</artifactId>
89     </dependency>
90     <dependency>
91       <groupId>${project.groupId}</groupId>
92       <artifactId>netconf-util</artifactId>
93     </dependency>
94     <dependency>
95       <groupId>com.guicedee.services</groupId>
96       <artifactId>javax.inject</artifactId>
97       <optional>true</optional>
98     </dependency>
99     <dependency>
100       <groupId>jakarta.annotation</groupId>
101       <artifactId>jakarta.annotation-api</artifactId>
102       <scope>provided</scope>
103       <optional>true</optional>
104     </dependency>
105     <dependency>
106       <groupId>org.osgi</groupId>
107       <artifactId>org.osgi.service.component.annotations</artifactId>
108     </dependency>
109
110     <dependency>
111       <groupId>org.xmlunit</groupId>
112       <artifactId>xmlunit-legacy</artifactId>
113     </dependency>
114     <dependency>
115       <groupId>${project.groupId}</groupId>
116       <artifactId>netconf-impl</artifactId>
117       <scope>test</scope>
118     </dependency>
119     <dependency>
120       <groupId>${project.groupId}</groupId>
121       <artifactId>netconf-mapping-api</artifactId>
122       <scope>test</scope>
123     </dependency>
124     <dependency>
125       <groupId>${project.groupId}</groupId>
126       <artifactId>netconf-util</artifactId>
127       <type>test-jar</type>
128       <scope>test</scope>
129     </dependency>
130     <dependency>
131       <groupId>com.google.code.gson</groupId>
132       <artifactId>gson</artifactId>
133     </dependency>
134     <dependency>
135       <groupId>org.opendaylight.yangtools</groupId>
136       <artifactId>yang-test-util</artifactId>
137     </dependency>
138   </dependencies>
139
140   <scm>
141     <connection>scm:git:ssh://git.opendaylight.org:29418/netconf.git</connection>
142     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/netconf.git</developerConnection>
143     <tag>HEAD</tag>
144     <url>https://git.opendaylight.org/gerrit/gitweb?p=netconf.git;a=summary</url>
145   </scm>
146 </project>