remove org.osgi.core dependencies which are now no longer required - yay!
[neutron.git] / features / production / odl-neutron-hostconfig-vpp / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2018 Intel Corporation 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
12     <parent>
13         <groupId>org.opendaylight.odlparent</groupId>
14         <artifactId>single-feature-parent</artifactId>
15         <version>3.1.0</version>
16         <relativePath/>
17     </parent>
18
19     <groupId>org.opendaylight.neutron</groupId>
20     <artifactId>odl-neutron-hostconfig-vpp</artifactId>
21     <version>0.11.0-SNAPSHOT</version>
22     <packaging>feature</packaging>
23     <name>OpenDaylight :: Neutron :: Hostconfig :: VPP</name>
24
25     <properties>
26         <netconf.version>1.5.0-SNAPSHOT</netconf.version>
27         <explicitFeatureDependencies>true</explicitFeatureDependencies>
28     </properties>
29
30     <dependencyManagement>
31         <dependencies>
32             <dependency>
33                 <groupId>org.opendaylight.controller</groupId>
34                 <artifactId>mdsal-artifacts</artifactId>
35                 <version>1.8.0-SNAPSHOT</version>
36                 <type>pom</type>
37                 <scope>import</scope>
38             </dependency>
39             <dependency>
40                 <groupId>org.opendaylight.netconf</groupId>
41                 <artifactId>netconf-artifacts</artifactId>
42                 <version>${netconf.version}</version>
43                 <type>pom</type>
44                 <scope>import</scope>
45             </dependency>
46         </dependencies>
47     </dependencyManagement>
48
49     <dependencies>
50         <dependency>
51             <groupId>org.opendaylight.controller</groupId>
52             <artifactId>odl-mdsal-broker</artifactId>
53             <type>xml</type>
54             <classifier>features</classifier>
55         </dependency>
56         <dependency>
57             <groupId>org.opendaylight.netconf</groupId>
58             <artifactId>odl-netconf-clustered-topology</artifactId>
59             <version>${netconf.version}</version>
60             <type>xml</type>
61             <classifier>features</classifier>
62         </dependency>
63         <dependency>
64             <groupId>org.opendaylight.netconf</groupId>
65             <artifactId>odl-netconf-connector</artifactId>
66             <version>${netconf.version}</version>
67             <type>xml</type>
68             <classifier>features</classifier>
69         </dependency>
70         <dependency>
71             <groupId>org.opendaylight.netconf</groupId>
72             <artifactId>odl-netconf-tcp</artifactId>
73             <version>${netconf.version}</version>
74             <type>xml</type>
75             <classifier>features</classifier>
76         </dependency>
77         <dependency>
78             <groupId>${project.groupId}</groupId>
79             <artifactId>odl-neutron-spi</artifactId>
80             <type>xml</type>
81             <classifier>features</classifier>
82             <version>${project.version}</version>
83         </dependency>
84         <dependency>
85             <groupId>${project.groupId}</groupId>
86             <artifactId>neutron-hostconfig-utils</artifactId>
87             <version>${project.version}</version>
88         </dependency>
89         <dependency>
90             <groupId>${project.groupId}</groupId>
91             <artifactId>neutron-hostconfig-vpp</artifactId>
92             <version>${project.version}</version>
93         </dependency>
94         <dependency>
95             <!-- finalname="/etc/org.opendaylight.vbd.impl.startup.cfg" -->
96             <groupId>${project.groupId}</groupId>
97             <artifactId>neutron-hostconfig-vpp</artifactId>
98             <version>${project.version}</version>
99             <type>cfg</type>
100             <classifier>config</classifier>
101         </dependency>
102     </dependencies>
103
104 </project>