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