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