Refactor InterfaceMetaUtils to non-static
[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"
10   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11   <modelVersion>4.0.0</modelVersion>
12
13   <parent>
14     <groupId>org.opendaylight.genius</groupId>
15     <artifactId>binding-parent</artifactId>
16     <version>0.4.0-SNAPSHOT</version>
17     <relativePath>../../commons/binding-parent</relativePath>
18   </parent>
19
20   <groupId>org.opendaylight.genius</groupId>
21   <artifactId>interfacemanager-impl</artifactId>
22   <version>0.4.0-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24   <!-- <name> formatting is used by autorelease to parse and notify projects on
25        build failure. Please do not modify this unless you have a good reason. -->
26   <name>ODL :: genius :: ${project.artifactId}</name>
27
28   <dependencies>
29     <dependency>
30       <groupId>${project.groupId}</groupId>
31       <artifactId>interfacemanager-api</artifactId>
32       <version>${project.version}</version>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.openflowplugin</groupId>
36       <artifactId>openflowplugin-extension-nicira</artifactId>
37       <version>${openflowplugin.version}</version>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.openflowplugin.model</groupId>
41       <artifactId>model-flow-service</artifactId>
42       <version>${openflowplugin.version}</version>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.openflowplugin.model</groupId>
46       <artifactId>model-flow-base</artifactId>
47       <version>${openflowplugin.version}</version>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.mdsal.model</groupId>
51       <artifactId>ietf-interfaces</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.mdsal</groupId>
55       <artifactId>mdsal-eos-binding-api</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.genius</groupId>
59       <artifactId>mdsalutil-api</artifactId>
60       <version>${genius.mdsalutil.version}</version>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.genius</groupId>
64       <artifactId>idmanager-api</artifactId>
65       <version>${genius.version}</version>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.genius</groupId>
69       <artifactId>alivenessmonitor-api</artifactId>
70       <version>${genius.version}</version>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.ovsdb</groupId>
74       <artifactId>southbound-api</artifactId>
75       <version>${genius.ovsdb.version}</version>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.ovsdb</groupId>
79       <artifactId>utils.southbound-utils</artifactId>
80       <version>${genius.ovsdb.version}</version>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.ovsdb</groupId>
84       <artifactId>hwvtepsouthbound-api</artifactId>
85       <version>${genius.ovsdb.version}</version>
86     </dependency>
87     <dependency>
88       <groupId>com.google.guava</groupId>
89       <artifactId>guava</artifactId>
90     </dependency>
91     <dependency>
92       <groupId>javax.inject</groupId>
93       <artifactId>javax.inject</artifactId>
94     </dependency>
95
96     <!-- Testing Dependencies -->
97     <dependency>
98       <groupId>org.opendaylight.genius</groupId>
99       <artifactId>testutils</artifactId>
100       <version>${genius.version}</version>
101       <scope>test</scope>
102     </dependency>
103     <dependency>
104       <groupId>org.opendaylight.genius</groupId>
105       <artifactId>lockmanager-impl</artifactId>
106       <version>${genius.version}</version>
107       <scope>test</scope>
108     </dependency>
109     <dependency>
110       <groupId>org.opendaylight.genius</groupId>
111       <artifactId>idmanager-impl</artifactId>
112       <version>${genius.version}</version>
113       <scope>test</scope>
114     </dependency>
115     <dependency>
116       <groupId>org.opendaylight.genius</groupId>
117       <artifactId>mdsalutil-testutils</artifactId>
118       <version>${genius.mdsalutil.version}</version>
119       <scope>test</scope>
120     </dependency>
121     <dependency>
122       <groupId>org.opendaylight.controller</groupId>
123       <artifactId>sal-common-testutil</artifactId>
124       <version>${controller.mdsal.version}</version>
125       <scope>test</scope>
126     </dependency>
127   </dependencies>
128
129   <build>
130     <plugins>
131       <plugin>
132         <groupId>org.eclipse.xtend</groupId>
133         <artifactId>xtend-maven-plugin</artifactId>
134       </plugin>
135       <plugin>
136         <groupId>org.apache.aries.blueprint</groupId>
137         <artifactId>blueprint-maven-plugin</artifactId>
138       </plugin>
139     </plugins>
140   </build>
141 </project>