Keepalives for netconf callhome
[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" 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
12     <parent>
13         <groupId>org.opendaylight.odlparent</groupId>
14         <artifactId>single-feature-parent</artifactId>
15         <version>3.1.6</version>
16         <relativePath/>
17     </parent>
18
19     <groupId>org.opendaylight.netconf</groupId>
20     <artifactId>odl-netconf-mdsal</artifactId>
21     <!-- This matches controller -->
22     <version>1.7.5-SNAPSHOT</version>
23     <packaging>feature</packaging>
24
25     <name>OpenDaylight :: Netconf :: Mdsal</name>
26
27     <properties>
28         <netconf.version>1.4.5-SNAPSHOT</netconf.version>
29         <controller.mdsal.version>${project.version}</controller.mdsal.version>
30     </properties>
31
32     <dependencyManagement>
33         <dependencies>
34             <dependency>
35                 <groupId>${project.groupId}</groupId>
36                 <artifactId>netconf-artifacts</artifactId>
37                 <version>${netconf.version}</version>
38                 <type>pom</type>
39                 <scope>import</scope>
40             </dependency>
41         </dependencies>
42     </dependencyManagement>
43
44     <dependencies>
45         <dependency>
46             <groupId>org.opendaylight.controller</groupId>
47             <artifactId>odl-config-all</artifactId>
48             <version>0.8.5-SNAPSHOT</version>
49             <type>xml</type>
50             <classifier>features</classifier>
51         </dependency>
52         <dependency>
53             <groupId>org.opendaylight.controller</groupId>
54             <artifactId>odl-config-netty</artifactId>
55             <version>0.8.5-SNAPSHOT</version>
56             <type>xml</type>
57             <classifier>features</classifier>
58         </dependency>
59         <dependency>
60             <groupId>${project.groupId}</groupId>
61             <artifactId>odl-netconf-all</artifactId>
62             <version>${netconf.version}</version>
63             <type>xml</type>
64             <classifier>features</classifier>
65         </dependency>
66         <dependency>
67             <groupId>${project.groupId}</groupId>
68             <artifactId>odl-netconf-tcp</artifactId>
69             <version>${netconf.version}</version>
70             <type>xml</type>
71             <classifier>features</classifier>
72         </dependency>
73         <dependency>
74             <groupId>${project.groupId}</groupId>
75             <artifactId>odl-netconf-ssh</artifactId>
76             <version>${netconf.version}</version>
77             <type>xml</type>
78             <classifier>features</classifier>
79         </dependency>
80         <dependency>
81             <groupId>${project.groupId}</groupId>
82             <artifactId>odl-netconf-client</artifactId>
83             <version>${netconf.version}</version>
84             <type>xml</type>
85             <classifier>features</classifier>
86         </dependency>
87         <dependency>
88             <groupId>org.opendaylight.controller</groupId>
89             <artifactId>odl-mdsal-broker</artifactId>
90             <version>${controller.mdsal.version}</version>
91             <type>xml</type>
92             <classifier>features</classifier>
93         </dependency>
94         <dependency>
95             <groupId>${project.groupId}</groupId>
96             <artifactId>mdsal-netconf-ssh</artifactId>
97         </dependency>
98         <dependency>
99             <groupId>${project.groupId}</groupId>
100             <artifactId>mdsal-netconf-tcp</artifactId>
101         </dependency>
102         <dependency>
103             <groupId>${project.groupId}</groupId>
104             <artifactId>mdsal-netconf-notification</artifactId>
105         </dependency>
106         <dependency>
107             <groupId>${project.groupId}</groupId>
108             <artifactId>mdsal-netconf-connector</artifactId>
109         </dependency>
110         <dependency>
111             <groupId>${project.groupId}</groupId>
112             <artifactId>mdsal-netconf-monitoring</artifactId>
113         </dependency>
114         <dependency>
115             <groupId>${project.groupId}</groupId>
116             <artifactId>mdsal-netconf-yang-library</artifactId>
117         </dependency>
118         <dependency>
119             <groupId>${project.groupId}</groupId>
120             <artifactId>mdsal-netconf-impl</artifactId>
121         </dependency>
122     </dependencies>
123 </project>