Bug 7466 - NPE thrown for interface without lport tag
[genius.git] / interfacemanager / interfacemanager-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2016 Ericsson India Global Services Pvt Ltd. 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.genius</groupId>
14     <artifactId>config-parent</artifactId>
15     <version>0.2.0-SNAPSHOT</version>
16     <relativePath>../../commons/config-parent</relativePath>
17   </parent>
18
19   <groupId>org.opendaylight.genius</groupId>
20   <artifactId>interfacemanager-impl</artifactId>
21   <version>0.2.0-SNAPSHOT</version>
22   <packaging>bundle</packaging>
23
24   <dependencies>
25     <dependency>
26       <groupId>${project.groupId}</groupId>
27       <artifactId>interfacemanager-api</artifactId>
28       <version>${project.version}</version>
29     </dependency>
30     <dependency>
31       <groupId>org.opendaylight.openflowplugin</groupId>
32       <artifactId>openflowplugin-extension-nicira</artifactId>
33       <version>${openflowplugin.version}</version>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.openflowplugin.model</groupId>
37       <artifactId>model-flow-service</artifactId>
38       <version>${openflowplugin.version}</version>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.openflowplugin.model</groupId>
42       <artifactId>model-flow-base</artifactId>
43       <version>${openflowplugin.version}</version>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.mdsal.model</groupId>
47       <artifactId>ietf-interfaces</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.genius</groupId>
51       <artifactId>mdsalutil-api</artifactId>
52       <version>${genius.mdsalutil.version}</version>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.genius</groupId>
56       <artifactId>idmanager-api</artifactId>
57       <version>${genius.version}</version>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.genius</groupId>
61       <artifactId>alivenessmonitor-api</artifactId>
62       <version>${genius.version}</version>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.ovsdb</groupId>
66       <artifactId>southbound-api</artifactId>
67       <version>${genius.ovsdb.version}</version>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.ovsdb</groupId>
71       <artifactId>hwvtepsouthbound-api</artifactId>
72       <version>${genius.ovsdb.version}</version>
73     </dependency>
74     <dependency>
75       <groupId>com.google.guava</groupId>
76       <artifactId>guava</artifactId>
77     </dependency>
78
79     <!-- Testing Dependencies -->
80     <dependency>
81       <groupId>org.opendaylight.genius</groupId>
82       <artifactId>testutils</artifactId>
83       <version>${genius.version}</version>
84       <type>pom</type>
85       <scope>test</scope>
86     </dependency>
87     <dependency>
88       <groupId>org.opendaylight.genius</groupId>
89       <artifactId>lockmanager-impl</artifactId>
90       <version>${genius.version}</version>
91       <scope>test</scope>
92     </dependency>
93     <dependency>
94       <groupId>org.opendaylight.genius</groupId>
95       <artifactId>idmanager-impl</artifactId>
96       <version>${genius.version}</version>
97       <scope>test</scope>
98     </dependency>
99   </dependencies>
100
101   <build>
102     <plugins>
103       <plugin>
104         <groupId>org.eclipse.xtend</groupId>
105         <artifactId>xtend-maven-plugin</artifactId>
106       </plugin>
107     </plugins>
108   </build>
109 </project>