Clear the initial content-type for DELETE requests
[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>5.0.11</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.10.5-SNAPSHOT</version>
23     <packaging>feature</packaging>
24
25     <name>OpenDaylight :: Netconf :: Mdsal</name>
26
27     <properties>
28         <netconf.version>1.7.5-SNAPSHOT</netconf.version>
29     </properties>
30
31     <dependencyManagement>
32         <dependencies>
33             <dependency>
34                 <groupId>${project.groupId}</groupId>
35                 <artifactId>netconf-artifacts</artifactId>
36                 <version>${netconf.version}</version>
37                 <type>pom</type>
38                 <scope>import</scope>
39             </dependency>
40         </dependencies>
41     </dependencyManagement>
42
43     <dependencies>
44         <dependency>
45             <groupId>${project.groupId}</groupId>
46             <artifactId>odl-netconf-all</artifactId>
47             <version>${netconf.version}</version>
48             <type>xml</type>
49             <classifier>features</classifier>
50         </dependency>
51         <dependency>
52             <groupId>${project.groupId}</groupId>
53             <artifactId>odl-netconf-tcp</artifactId>
54             <version>${netconf.version}</version>
55             <type>xml</type>
56             <classifier>features</classifier>
57         </dependency>
58         <dependency>
59             <groupId>${project.groupId}</groupId>
60             <artifactId>odl-netconf-ssh</artifactId>
61             <version>${netconf.version}</version>
62             <type>xml</type>
63             <classifier>features</classifier>
64         </dependency>
65         <dependency>
66             <groupId>${project.groupId}</groupId>
67             <artifactId>odl-netconf-client</artifactId>
68             <version>${netconf.version}</version>
69             <type>xml</type>
70             <classifier>features</classifier>
71         </dependency>
72         <dependency>
73             <groupId>${project.groupId}</groupId>
74             <artifactId>mdsal-netconf-ssh</artifactId>
75         </dependency>
76         <dependency>
77             <groupId>${project.groupId}</groupId>
78             <artifactId>mdsal-netconf-tcp</artifactId>
79         </dependency>
80         <dependency>
81             <groupId>${project.groupId}</groupId>
82             <artifactId>mdsal-netconf-notification</artifactId>
83         </dependency>
84         <dependency>
85             <groupId>${project.groupId}</groupId>
86             <artifactId>mdsal-netconf-connector</artifactId>
87         </dependency>
88         <dependency>
89             <groupId>${project.groupId}</groupId>
90             <artifactId>mdsal-netconf-monitoring</artifactId>
91         </dependency>
92         <dependency>
93             <groupId>${project.groupId}</groupId>
94             <artifactId>mdsal-netconf-yang-library</artifactId>
95         </dependency>
96         <dependency>
97             <groupId>${project.groupId}</groupId>
98             <artifactId>mdsal-netconf-impl</artifactId>
99         </dependency>
100     </dependencies>
101 </project>