Add missing license notice
[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"
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.neutron</groupId>
22     <artifactId>odl-neutron-hostconfig-vpp</artifactId>
23     <version>0.11.0-SNAPSHOT</version>
24     <packaging>feature</packaging>
25     <name>OpenDaylight :: Neutron :: Hostconfig :: VPP</name>
26
27     <properties>
28         <netconf.version>1.5.0-SNAPSHOT</netconf.version>
29         <explicitFeatureDependencies>true</explicitFeatureDependencies>
30     </properties>
31
32     <dependencyManagement>
33         <dependencies>
34             <dependency>
35                 <groupId>org.opendaylight.controller</groupId>
36                 <artifactId>mdsal-artifacts</artifactId>
37                 <version>1.8.0-SNAPSHOT</version>
38                 <type>pom</type>
39                 <scope>import</scope>
40             </dependency>
41             <dependency>
42                 <groupId>org.opendaylight.netconf</groupId>
43                 <artifactId>netconf-artifacts</artifactId>
44                 <version>${netconf.version}</version>
45                 <type>pom</type>
46                 <scope>import</scope>
47             </dependency>
48         </dependencies>
49     </dependencyManagement>
50
51     <dependencies>
52         <dependency>
53             <groupId>org.opendaylight.controller</groupId>
54             <artifactId>odl-mdsal-broker</artifactId>
55             <type>xml</type>
56             <classifier>features</classifier>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.netconf</groupId>
60             <artifactId>odl-netconf-clustered-topology</artifactId>
61             <version>${netconf.version}</version>
62             <type>xml</type>
63             <classifier>features</classifier>
64         </dependency>
65         <dependency>
66             <groupId>org.opendaylight.netconf</groupId>
67             <artifactId>odl-netconf-connector</artifactId>
68             <version>${netconf.version}</version>
69             <type>xml</type>
70             <classifier>features</classifier>
71         </dependency>
72         <dependency>
73             <groupId>org.opendaylight.netconf</groupId>
74             <artifactId>odl-netconf-tcp</artifactId>
75             <version>${netconf.version}</version>
76             <type>xml</type>
77             <classifier>features</classifier>
78         </dependency>
79         <dependency>
80             <groupId>${project.groupId}</groupId>
81             <artifactId>odl-neutron-spi</artifactId>
82             <type>xml</type>
83             <classifier>features</classifier>
84             <version>${project.version}</version>
85         </dependency>
86         <dependency>
87             <groupId>${project.groupId}</groupId>
88             <artifactId>neutron-hostconfig-utils</artifactId>
89             <version>${project.version}</version>
90         </dependency>
91         <dependency>
92             <groupId>${project.groupId}</groupId>
93             <artifactId>neutron-hostconfig-vpp</artifactId>
94             <version>${project.version}</version>
95         </dependency>
96         <dependency>
97             <!-- finalname="/etc/org.opendaylight.vbd.impl.startup.cfg" -->
98             <groupId>${project.groupId}</groupId>
99             <artifactId>neutron-hostconfig-vpp</artifactId>
100             <version>${project.version}</version>
101             <type>cfg</type>
102             <classifier>config</classifier>
103         </dependency>
104         <dependency>
105             <groupId>org.osgi</groupId>
106             <artifactId>org.osgi.core</artifactId>
107         </dependency>
108         <dependency>
109             <groupId>org.slf4j</groupId>
110             <artifactId>slf4j-api</artifactId>
111         </dependency>
112     </dependencies>
113
114 </project>