Merge "fix failure during connecting device when channelActive happens later than...
[netconf.git] / features / netconf / odl-netconf-mdsal / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright © 2017 Red Hat, Inc. and others.
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"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12     <modelVersion>4.0.0</modelVersion>
13
14     <parent>
15         <groupId>org.opendaylight.odlparent</groupId>
16         <artifactId>single-feature-parent</artifactId>
17         <version>3.0.2</version>
18         <relativePath/>
19     </parent>
20
21     <groupId>org.opendaylight.netconf</groupId>
22     <artifactId>odl-netconf-mdsal</artifactId>
23     <!-- This matches controller -->
24     <version>1.8.0-SNAPSHOT</version>
25     <packaging>feature</packaging>
26
27     <name>OpenDaylight :: Netconf :: Mdsal</name>
28
29     <properties>
30         <netconf.version>1.5.0-SNAPSHOT</netconf.version>
31         <controller.mdsal.version>${project.version}</controller.mdsal.version>
32     </properties>
33
34     <dependencyManagement>
35         <dependencies>
36             <dependency>
37                 <groupId>${project.groupId}</groupId>
38                 <artifactId>netconf-artifacts</artifactId>
39                 <version>${netconf.version}</version>
40                 <type>pom</type>
41                 <scope>import</scope>
42             </dependency>
43         </dependencies>
44     </dependencyManagement>
45
46     <dependencies>
47         <dependency>
48             <groupId>${project.groupId}</groupId>
49             <artifactId>odl-netconf-all</artifactId>
50             <version>${netconf.version}</version>
51             <type>xml</type>
52             <classifier>features</classifier>
53         </dependency>
54         <dependency>
55             <groupId>${project.groupId}</groupId>
56             <artifactId>odl-netconf-tcp</artifactId>
57             <version>${netconf.version}</version>
58             <type>xml</type>
59             <classifier>features</classifier>
60         </dependency>
61         <dependency>
62             <groupId>${project.groupId}</groupId>
63             <artifactId>odl-netconf-ssh</artifactId>
64             <version>${netconf.version}</version>
65             <type>xml</type>
66             <classifier>features</classifier>
67         </dependency>
68         <dependency>
69             <groupId>${project.groupId}</groupId>
70             <artifactId>odl-netconf-client</artifactId>
71             <version>${netconf.version}</version>
72             <type>xml</type>
73             <classifier>features</classifier>
74         </dependency>
75         <dependency>
76             <groupId>org.opendaylight.controller</groupId>
77             <artifactId>odl-mdsal-broker</artifactId>
78             <version>${controller.mdsal.version}</version>
79             <type>xml</type>
80             <classifier>features</classifier>
81         </dependency>
82         <dependency>
83             <groupId>${project.groupId}</groupId>
84             <artifactId>mdsal-netconf-ssh</artifactId>
85         </dependency>
86         <dependency>
87             <groupId>${project.groupId}</groupId>
88             <artifactId>mdsal-netconf-tcp</artifactId>
89         </dependency>
90         <dependency>
91             <groupId>${project.groupId}</groupId>
92             <artifactId>mdsal-netconf-notification</artifactId>
93         </dependency>
94         <dependency>
95             <groupId>${project.groupId}</groupId>
96             <artifactId>mdsal-netconf-connector</artifactId>
97         </dependency>
98         <dependency>
99             <groupId>${project.groupId}</groupId>
100             <artifactId>mdsal-netconf-monitoring</artifactId>
101         </dependency>
102         <dependency>
103             <groupId>${project.groupId}</groupId>
104             <artifactId>mdsal-netconf-yang-library</artifactId>
105         </dependency>
106         <dependency>
107             <groupId>${project.groupId}</groupId>
108             <artifactId>mdsal-netconf-impl</artifactId>
109         </dependency>
110     </dependencies>
111 </project>