Merge "Handling RACE conditions in bind/unbind service"
[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   <!-- <name> formatting is used by autorelease to parse and notify projects on
24        build failure. Please do not modify this unless you have a good reason. -->
25   <name>ODL :: genius :: ${project.artifactId}</name>
26
27   <dependencies>
28     <dependency>
29       <groupId>${project.groupId}</groupId>
30       <artifactId>interfacemanager-api</artifactId>
31       <version>${project.version}</version>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.openflowplugin</groupId>
35       <artifactId>openflowplugin-extension-nicira</artifactId>
36       <version>${openflowplugin.version}</version>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.openflowplugin.model</groupId>
40       <artifactId>model-flow-service</artifactId>
41       <version>${openflowplugin.version}</version>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.openflowplugin.model</groupId>
45       <artifactId>model-flow-base</artifactId>
46       <version>${openflowplugin.version}</version>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.mdsal.model</groupId>
50       <artifactId>ietf-interfaces</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.genius</groupId>
54       <artifactId>mdsalutil-api</artifactId>
55       <version>${genius.mdsalutil.version}</version>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.genius</groupId>
59       <artifactId>idmanager-api</artifactId>
60       <version>${genius.version}</version>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.genius</groupId>
64       <artifactId>alivenessmonitor-api</artifactId>
65       <version>${genius.version}</version>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.ovsdb</groupId>
69       <artifactId>southbound-api</artifactId>
70       <version>${genius.ovsdb.version}</version>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.ovsdb</groupId>
74       <artifactId>utils.southbound-utils</artifactId>
75       <version>${genius.ovsdb.version}</version>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.ovsdb</groupId>
79       <artifactId>hwvtepsouthbound-api</artifactId>
80       <version>${genius.ovsdb.version}</version>
81     </dependency>
82     <dependency>
83       <groupId>com.google.guava</groupId>
84       <artifactId>guava</artifactId>
85     </dependency>
86     <dependency>
87       <groupId>javax.inject</groupId>
88       <artifactId>javax.inject</artifactId>
89     </dependency>
90
91     <!-- Testing Dependencies -->
92     <dependency>
93       <groupId>org.opendaylight.genius</groupId>
94       <artifactId>testutils</artifactId>
95       <version>${genius.version}</version>
96       <type>pom</type>
97       <scope>test</scope>
98     </dependency>
99     <dependency>
100       <groupId>org.opendaylight.genius</groupId>
101       <artifactId>lockmanager-impl</artifactId>
102       <version>${genius.version}</version>
103       <scope>test</scope>
104     </dependency>
105     <dependency>
106       <groupId>org.opendaylight.genius</groupId>
107       <artifactId>idmanager-impl</artifactId>
108       <version>${genius.version}</version>
109       <scope>test</scope>
110     </dependency>
111   </dependencies>
112
113   <build>
114     <plugins>
115       <plugin>
116         <groupId>org.eclipse.xtend</groupId>
117         <artifactId>xtend-maven-plugin</artifactId>
118       </plugin>
119       <plugin>
120         <groupId>org.apache.aries.blueprint</groupId>
121         <artifactId>blueprint-maven-plugin</artifactId>
122       </plugin>
123     </plugins>
124   </build>
125 </project>