23525ce8f680e56e1c155187f822496c3732d958
[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.6.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.3.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.model</groupId>
80       <artifactId>ietf-interfaces</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.3.0-SNAPSHOT</version>
104     </dependency>
105     <dependency>
106       <groupId>org.opendaylight.serviceutils</groupId>
107       <artifactId>tools-api</artifactId>
108       <version>0.3.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     </dependency>
137     <dependency>
138       <groupId>org.ops4j.pax.cdi</groupId>
139       <artifactId>pax-cdi-api</artifactId>
140       <optional>true</optional>
141     </dependency>
142     <!-- for infrautils metrics APIs -->
143     <dependency>
144       <groupId>org.opendaylight.infrautils</groupId>
145       <artifactId>metrics-api</artifactId>
146     </dependency>
147
148     <!-- Testing Dependencies -->
149     <dependency>
150       <groupId>org.opendaylight.genius</groupId>
151       <artifactId>testutils</artifactId>
152       <version>${project.version}</version>
153       <scope>test</scope>
154     </dependency>
155     <dependency>
156       <groupId>org.opendaylight.genius</groupId>
157       <artifactId>lockmanager-impl</artifactId>
158       <version>${project.version}</version>
159       <scope>test</scope>
160     </dependency>
161     <dependency>
162       <groupId>org.opendaylight.genius</groupId>
163       <artifactId>idmanager-impl</artifactId>
164         <version>${project.version}</version>
165       <scope>test</scope>
166     </dependency>
167     <dependency>
168       <groupId>org.opendaylight.genius</groupId>
169       <artifactId>mdsalutil-testutils</artifactId>
170       <version>${project.version}</version>
171       <scope>test</scope>
172     </dependency>
173     <dependency>
174       <groupId>org.opendaylight.mdsal</groupId>
175       <artifactId>mdsal-eos-binding-adapter</artifactId>
176       <scope>test</scope>
177     </dependency>
178     <dependency>
179     <groupId>org.opendaylight.mdsal</groupId>
180       <artifactId>mdsal-eos-dom-simple</artifactId>
181       <scope>test</scope>
182     </dependency>
183   </dependencies>
184
185   <build>
186     <pluginManagement>
187       <plugins>
188         <plugin>
189           <artifactId>maven-checkstyle-plugin</artifactId>
190           <dependencies>
191             <dependency>
192               <groupId>org.opendaylight.genius</groupId>
193               <artifactId>checkstyle</artifactId>
194               <version>${project.version}</version>
195             </dependency>
196           </dependencies>
197           <executions>
198             <execution>
199               <id>check-databroker</id>
200               <goals>
201                 <goal>check</goal>
202               </goals>
203               <phase>process-sources</phase>
204               <configuration>
205                 <configLocation>databroker-checks.xml</configLocation>
206                 <includeResources>false</includeResources>
207                 <includeTestSourceDirectory>false</includeTestSourceDirectory>
208                 <includeTestResources>false</includeTestResources>
209                 <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
210                 <failsOnError>true</failsOnError>
211                 <consoleOutput>true</consoleOutput>
212               </configuration>
213             </execution>
214           </executions>
215         </plugin>
216       </plugins>
217     </pluginManagement>
218     <plugins>
219       <plugin>
220         <groupId>org.eclipse.xtend</groupId>
221         <artifactId>xtend-maven-plugin</artifactId>
222         <dependencies>
223           <dependency>
224             <groupId>org.eclipse.platform</groupId>
225             <artifactId>org.eclipse.equinox.common</artifactId>
226             <version>3.10.0</version>
227           </dependency>
228         </dependencies>
229       </plugin>
230       <plugin>
231         <groupId>org.apache.aries.blueprint</groupId>
232         <artifactId>blueprint-maven-plugin</artifactId>
233       </plugin>
234       <plugin>
235         <groupId>org.codehaus.mojo</groupId>
236         <artifactId>build-helper-maven-plugin</artifactId>
237         <executions>
238           <execution>
239             <id>attach-artifacts</id>
240             <goals>
241               <goal>attach-artifact</goal>
242             </goals>
243             <phase>package</phase>
244             <configuration>
245               <artifacts>
246                 <artifact>
247                   <file>${project.build.directory}/classes/initial/genius-ifm-config.xml</file>
248                   <type>xml</type>
249                   <classifier>config</classifier>
250                 </artifact>
251               </artifacts>
252             </configuration>
253           </execution>
254         </executions>
255       </plugin>
256     </plugins>
257   </build>
258 </project>