Bump odlparent version to 5.0.0
[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.7.0-SNAPSHOT</version>
17     <relativePath>../../commons/binding-parent</relativePath>
18   </parent>
19
20   <groupId>org.opendaylight.genius</groupId>
21   <artifactId>interfacemanager-impl</artifactId>
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   <dependencyManagement>
28     <dependencies>
29       <dependency>
30         <groupId>org.opendaylight.genius</groupId>
31         <artifactId>genius-artifacts</artifactId>
32         <version>${project.version}</version>
33         <type>pom</type>
34         <scope>import</scope>
35       </dependency>
36       <dependency>
37         <groupId>org.opendaylight.infrautils</groupId>
38         <artifactId>infrautils-artifacts</artifactId>
39         <version>${genius.infrautils.version}</version>
40         <type>pom</type>
41         <scope>import</scope>
42       </dependency>
43       <dependency>
44         <groupId>org.opendaylight.openflowplugin</groupId>
45         <artifactId>openflowplugin-artifacts</artifactId>
46         <version>${openflowplugin.version}</version>
47         <type>pom</type>
48         <scope>import</scope>
49       </dependency>
50       <dependency>
51         <groupId>org.opendaylight.serviceutils</groupId>
52         <artifactId>serviceutils-artifacts</artifactId>
53         <version>0.4.0-SNAPSHOT</version>
54         <type>pom</type>
55         <scope>import</scope>
56       </dependency>
57     </dependencies>
58   </dependencyManagement>
59
60   <dependencies>
61     <dependency>
62       <groupId>${project.groupId}</groupId>
63       <artifactId>interfacemanager-api</artifactId>
64       <version>${project.version}</version>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.openflowplugin</groupId>
68       <artifactId>openflowplugin-extension-nicira</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.openflowplugin.model</groupId>
72       <artifactId>model-flow-service</artifactId>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.openflowplugin.model</groupId>
76       <artifactId>model-flow-base</artifactId>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
80       <artifactId>rfc7223</artifactId>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.mdsal</groupId>
84       <artifactId>mdsal-eos-binding-api</artifactId>
85     </dependency>
86     <dependency>
87       <groupId>org.opendaylight.genius</groupId>
88       <artifactId>mdsalutil-api</artifactId>
89     </dependency>
90     <dependency>
91       <groupId>org.opendaylight.genius</groupId>
92       <artifactId>idmanager-api</artifactId>
93       <version>${project.version}</version>
94     </dependency>
95     <dependency>
96       <groupId>org.opendaylight.genius</groupId>
97       <artifactId>alivenessmonitor-api</artifactId>
98       <version>${project.version}</version>
99     </dependency>
100     <dependency>
101       <groupId>org.opendaylight.serviceutils</groupId>
102       <artifactId>srm-api</artifactId>
103       <version>0.4.0-SNAPSHOT</version>
104     </dependency>
105     <dependency>
106       <groupId>org.opendaylight.serviceutils</groupId>
107       <artifactId>tools-api</artifactId>
108       <version>0.4.0-SNAPSHOT</version>
109     </dependency>
110     <dependency>
111       <groupId>org.opendaylight.ovsdb</groupId>
112       <artifactId>southbound-api</artifactId>
113       <version>${genius.ovsdb.version}</version>
114     </dependency>
115     <dependency>
116       <groupId>org.opendaylight.ovsdb</groupId>
117       <artifactId>utils.southbound-utils</artifactId>
118       <version>${genius.ovsdb.version}</version>
119     </dependency>
120     <dependency>
121       <groupId>org.opendaylight.ovsdb</groupId>
122       <artifactId>hwvtepsouthbound-api</artifactId>
123       <version>${genius.ovsdb.version}</version>
124     </dependency>
125     <dependency>
126       <groupId>org.opendaylight.infrautils</groupId>
127       <artifactId>diagstatus-api</artifactId>
128     </dependency>
129     <dependency>
130       <groupId>com.google.guava</groupId>
131       <artifactId>guava</artifactId>
132     </dependency>
133     <dependency>
134       <groupId>javax.inject</groupId>
135       <artifactId>javax.inject</artifactId>
136       <optional>true</optional>
137     </dependency>
138     <dependency>
139       <groupId>javax.annotation</groupId>
140       <artifactId>javax.annotation-api</artifactId>
141       <optional>true</optional>
142     </dependency>
143     <dependency>
144       <groupId>org.apache.aries.blueprint</groupId>
145       <artifactId>blueprint-maven-plugin-annotation</artifactId>
146       <optional>true</optional>
147     </dependency>
148     <dependency>
149       <groupId>com.google.code.findbugs</groupId>
150       <artifactId>jsr305</artifactId>
151       <optional>true</optional>
152     </dependency>
153     <!-- for infrautils metrics APIs -->
154     <dependency>
155       <groupId>org.opendaylight.infrautils</groupId>
156       <artifactId>metrics-api</artifactId>
157     </dependency>
158
159     <!-- Testing Dependencies -->
160     <dependency>
161       <groupId>org.opendaylight.genius</groupId>
162       <artifactId>testutils</artifactId>
163       <version>${project.version}</version>
164       <scope>test</scope>
165     </dependency>
166     <dependency>
167       <groupId>org.opendaylight.genius</groupId>
168       <artifactId>lockmanager-impl</artifactId>
169       <version>${project.version}</version>
170       <scope>test</scope>
171     </dependency>
172     <dependency>
173       <groupId>org.opendaylight.genius</groupId>
174       <artifactId>idmanager-impl</artifactId>
175         <version>${project.version}</version>
176       <scope>test</scope>
177     </dependency>
178     <dependency>
179       <groupId>org.opendaylight.genius</groupId>
180       <artifactId>mdsalutil-testutils</artifactId>
181       <version>${project.version}</version>
182       <scope>test</scope>
183     </dependency>
184     <dependency>
185       <groupId>org.opendaylight.mdsal</groupId>
186       <artifactId>mdsal-eos-binding-adapter</artifactId>
187       <scope>test</scope>
188     </dependency>
189     <dependency>
190     <groupId>org.opendaylight.mdsal</groupId>
191       <artifactId>mdsal-eos-dom-simple</artifactId>
192       <scope>test</scope>
193     </dependency>
194   </dependencies>
195
196   <build>
197     <pluginManagement>
198       <plugins>
199         <plugin>
200           <artifactId>maven-checkstyle-plugin</artifactId>
201           <dependencies>
202             <dependency>
203               <groupId>org.opendaylight.genius</groupId>
204               <artifactId>checkstyle</artifactId>
205               <version>${project.version}</version>
206             </dependency>
207           </dependencies>
208           <executions>
209             <execution>
210               <id>check-databroker</id>
211               <goals>
212                 <goal>check</goal>
213               </goals>
214               <phase>process-sources</phase>
215               <configuration>
216                 <configLocation>databroker-checks.xml</configLocation>
217                 <includeResources>false</includeResources>
218                 <includeTestSourceDirectory>false</includeTestSourceDirectory>
219                 <includeTestResources>false</includeTestResources>
220                 <sourceDirectories>
221                   <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
222                 </sourceDirectories>
223                 <failsOnError>true</failsOnError>
224                 <consoleOutput>true</consoleOutput>
225               </configuration>
226             </execution>
227           </executions>
228         </plugin>
229       </plugins>
230     </pluginManagement>
231     <plugins>
232       <plugin>
233         <groupId>org.eclipse.xtend</groupId>
234         <artifactId>xtend-maven-plugin</artifactId>
235       </plugin>
236       <plugin>
237         <groupId>org.apache.aries.blueprint</groupId>
238         <artifactId>blueprint-maven-plugin</artifactId>
239       </plugin>
240       <plugin>
241         <groupId>org.codehaus.mojo</groupId>
242         <artifactId>build-helper-maven-plugin</artifactId>
243         <executions>
244           <execution>
245             <id>attach-artifacts</id>
246             <goals>
247               <goal>attach-artifact</goal>
248             </goals>
249             <phase>package</phase>
250             <configuration>
251               <artifacts>
252                 <artifact>
253                   <file>${project.build.directory}/classes/initial/genius-ifm-config.xml</file>
254                   <type>xml</type>
255                   <classifier>config</classifier>
256                 </artifact>
257               </artifacts>
258             </configuration>
259           </execution>
260         </executions>
261       </plugin>
262     </plugins>
263   </build>
264 </project>