82496: Pre-create FRM Nodes and Tables
[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       <version>${openflowplugin.version}</version>
125     </dependency>
126     <!-- for infrautils metrics APIs -->
127     <dependency>
128       <groupId>org.opendaylight.infrautils</groupId>
129       <artifactId>metrics-api</artifactId>
130     </dependency>
131
132     <!-- Testing Dependencies -->
133     <dependency>
134       <groupId>org.opendaylight.genius</groupId>
135       <artifactId>testutils</artifactId>
136       <version>${project.version}</version>
137       <scope>test</scope>
138     </dependency>
139     <dependency>
140       <groupId>org.opendaylight.genius</groupId>
141       <artifactId>lockmanager-impl</artifactId>
142       <version>${project.version}</version>
143       <scope>test</scope>
144     </dependency>
145     <dependency>
146       <groupId>org.opendaylight.genius</groupId>
147       <artifactId>idmanager-impl</artifactId>
148         <version>${project.version}</version>
149       <scope>test</scope>
150     </dependency>
151     <dependency>
152       <groupId>org.opendaylight.genius</groupId>
153       <artifactId>mdsalutil-testutils</artifactId>
154       <version>${project.version}</version>
155       <scope>test</scope>
156     </dependency>
157     <dependency>
158       <groupId>org.opendaylight.mdsal</groupId>
159       <artifactId>mdsal-eos-binding-adapter</artifactId>
160       <scope>test</scope>
161     </dependency>
162     <dependency>
163     <groupId>org.opendaylight.mdsal</groupId>
164       <artifactId>mdsal-eos-dom-simple</artifactId>
165       <scope>test</scope>
166     </dependency>
167   </dependencies>
168
169   <build>
170     <pluginManagement>
171       <plugins>
172         <plugin>
173           <artifactId>maven-checkstyle-plugin</artifactId>
174           <dependencies>
175             <dependency>
176               <groupId>org.opendaylight.genius</groupId>
177               <artifactId>checkstyle</artifactId>
178               <version>${project.version}</version>
179             </dependency>
180           </dependencies>
181           <executions>
182             <execution>
183               <id>check-databroker</id>
184               <goals>
185                 <goal>check</goal>
186               </goals>
187               <phase>process-sources</phase>
188               <configuration>
189                 <configLocation>databroker-checks.xml</configLocation>
190                 <includeResources>false</includeResources>
191                 <includeTestSourceDirectory>false</includeTestSourceDirectory>
192                 <includeTestResources>false</includeTestResources>
193                 <sourceDirectories>
194                   <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
195                 </sourceDirectories>
196                 <failsOnError>true</failsOnError>
197                 <consoleOutput>true</consoleOutput>
198               </configuration>
199             </execution>
200           </executions>
201         </plugin>
202       </plugins>
203     </pluginManagement>
204     <plugins>
205       <plugin>
206         <groupId>org.eclipse.xtend</groupId>
207         <artifactId>xtend-maven-plugin</artifactId>
208       </plugin>
209       <plugin>
210         <groupId>org.apache.aries.blueprint</groupId>
211         <artifactId>blueprint-maven-plugin</artifactId>
212       </plugin>
213       <plugin>
214         <groupId>org.codehaus.mojo</groupId>
215         <artifactId>build-helper-maven-plugin</artifactId>
216         <executions>
217           <execution>
218             <id>attach-artifacts</id>
219             <goals>
220               <goal>attach-artifact</goal>
221             </goals>
222             <phase>package</phase>
223             <configuration>
224               <artifacts>
225                 <artifact>
226                   <file>${project.build.directory}/classes/initial/genius-ifm-config.xml</file>
227                   <type>xml</type>
228                   <classifier>config</classifier>
229                 </artifact>
230               </artifacts>
231             </configuration>
232           </execution>
233         </executions>
234       </plugin>
235     </plugins>
236   </build>
237 </project>