Release Magnesium
[netvirt.git] / elanmanager / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2016 Ericsson India Global Services Pvt Ltd. and others.
4
5 All rights reserved. This program and the accompanying materials are made
6 available under the terms of the Eclipse Public License v1.0 which accompanies
7 this distribution, 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10
11     <parent>
12         <groupId>org.opendaylight.netvirt</groupId>
13         <artifactId>binding-parent</artifactId>
14         <version>0.10.0</version>
15         <relativePath>../../commons/binding-parent</relativePath>
16     </parent>
17
18     <artifactId>elanmanager-impl</artifactId>
19     <name>ODL :: netvirt :: ${project.artifactId}</name>
20     <packaging>bundle</packaging>
21     <modelVersion>4.0.0</modelVersion>
22
23   <dependencyManagement>
24     <dependencies>
25       <dependency>
26         <groupId>com.google.inject</groupId>
27         <artifactId>guice</artifactId>
28         <version>4.2.2</version>
29       </dependency>
30     </dependencies>
31   </dependencyManagement>
32
33     <dependencies>
34         <dependency>
35             <groupId>${project.groupId}</groupId>
36             <artifactId>elanmanager-api</artifactId>
37             <version>${project.version}</version>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.genius</groupId>
41             <artifactId>interfacemanager-api</artifactId>
42             <version>${genius.version}</version>
43         </dependency>
44         <dependency>
45             <groupId>org.opendaylight.genius</groupId>
46             <artifactId>itm-api</artifactId>
47             <version>${genius.version}</version>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.serviceutils</groupId>
51             <artifactId>tools-api</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.opendaylight.genius</groupId>
55             <artifactId>mdsalutil-api</artifactId>
56             <version>${genius.version}</version>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.serviceutils</groupId>
60             <artifactId>srm-api</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>org.opendaylight.infrautils</groupId>
64             <artifactId>diagstatus-api</artifactId>
65             <version>${infrautils.version}</version>
66         </dependency>
67         <dependency>
68             <groupId>org.opendaylight.netvirt</groupId>
69             <artifactId>cache-impl</artifactId>
70             <version>${project.version}</version>
71             <scope>test</scope>
72         </dependency>
73         <dependency>
74             <groupId>${project.groupId}</groupId>
75             <artifactId>neutronvpn-api</artifactId>
76             <version>${project.version}</version>
77         </dependency>
78         <dependency>
79             <groupId>org.opendaylight.controller</groupId>
80             <artifactId>sal-binding-broker-impl</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>org.opendaylight.ovsdb</groupId>
84             <artifactId>hwvtepsouthbound-api</artifactId>
85             <version>${ovsdb.version}</version>
86         </dependency>
87         <dependency>
88             <groupId>org.opendaylight.neutron</groupId>
89             <artifactId>model</artifactId>
90             <version>${neutron.version}</version>
91         </dependency>
92         <dependency>
93             <groupId>org.apache.karaf.shell</groupId>
94             <artifactId>org.apache.karaf.shell.console</artifactId>
95             <scope>provided</scope>
96         </dependency>
97         <dependency>
98             <groupId>${project.groupId}</groupId>
99             <artifactId>dhcpservice-api</artifactId>
100             <version>${project.version}</version>
101         </dependency>
102         <dependency>
103             <groupId>org.opendaylight.ovsdb</groupId>
104             <artifactId>southbound-api</artifactId>
105             <version>${ovsdb.version}</version>
106         </dependency>
107         <dependency>
108             <groupId>org.opendaylight.ovsdb</groupId>
109             <artifactId>utils.mdsal-utils</artifactId>
110             <version>${ovsdb.version}</version>
111         </dependency>
112         <dependency>
113             <groupId>org.opendaylight.ovsdb</groupId>
114             <artifactId>utils.southbound-utils</artifactId>
115             <version>${ovsdb.version}</version>
116         </dependency>
117         <dependency>
118             <groupId>${project.groupId}</groupId>
119             <artifactId>vpnmanager-api</artifactId>
120             <version>${project.version}</version>
121         </dependency>
122         <dependency>
123             <groupId>org.opendaylight.openflowplugin</groupId>
124             <artifactId>openflowplugin-extension-nicira</artifactId>
125         </dependency>
126         <dependency>
127             <groupId>org.opendaylight.openflowplugin.model</groupId>
128             <artifactId>model-flow-service</artifactId>
129         </dependency>
130         <dependency>
131             <groupId>org.opendaylight.openflowplugin.model</groupId>
132             <artifactId>model-flow-base</artifactId>
133         </dependency>
134         <dependency>
135             <groupId>org.apache.aries.blueprint</groupId>
136             <artifactId>blueprint-maven-plugin-annotation</artifactId>
137             <optional>true</optional>
138         </dependency>
139
140         <!-- Only for unit-test -->
141         <dependency>
142             <groupId>org.opendaylight.yangtools</groupId>
143             <artifactId>testutils</artifactId>
144             <scope>test</scope>
145         </dependency>
146         <dependency>
147             <groupId>org.opendaylight.genius</groupId>
148             <artifactId>mdsalutil-api</artifactId>
149             <version>${genius.version}</version>
150             <scope>test</scope>
151             <type>test-jar</type>
152         </dependency>
153         <dependency>
154             <groupId>org.opendaylight.genius</groupId>
155             <artifactId>mdsalutil-impl</artifactId>
156             <version>${genius.version}</version>
157             <scope>test</scope>
158         </dependency>
159         <dependency>
160             <groupId>org.opendaylight.controller</groupId>
161             <artifactId>sal-binding-broker-impl</artifactId>
162             <scope>test</scope>
163             <type>test-jar</type>
164         </dependency>
165         <dependency>
166             <groupId>org.opendaylight.mdsal</groupId>
167             <artifactId>mdsal-binding-test-utils</artifactId>
168             <scope>test</scope>
169         </dependency>
170         <dependency>
171             <groupId>org.opendaylight.genius</groupId>
172             <artifactId>lockmanager-impl</artifactId>
173             <version>${genius.version}</version>
174             <scope>test</scope>
175         </dependency>
176         <dependency>
177             <groupId>org.opendaylight.genius</groupId>
178             <artifactId>idmanager-impl</artifactId>
179             <version>${genius.version}</version>
180             <scope>test</scope>
181         </dependency>
182         <dependency>
183             <groupId>org.opendaylight.genius</groupId>
184             <artifactId>interfacemanager-impl</artifactId>
185             <version>${genius.version}</version>
186             <scope>test</scope>
187         </dependency>
188         <dependency>
189             <groupId>org.opendaylight.infrautils</groupId>
190             <artifactId>metrics-impl-test</artifactId>
191             <version>${infrautils.version}</version>
192             <scope>test</scope>
193         </dependency>
194         <dependency>
195             <groupId>org.opendaylight.infrautils</groupId>
196             <artifactId>inject.guice.testutils</artifactId>
197             <version>${infrautils.version}</version>
198             <scope>test</scope>
199         </dependency>
200         <dependency>
201             <groupId>org.opendaylight.infrautils</groupId>
202             <artifactId>infrautils-testutils</artifactId>
203             <version>${infrautils.version}</version>
204             <scope>test</scope>
205         </dependency>
206         <dependency>
207           <groupId>org.opendaylight.infrautils</groupId>
208           <artifactId>caches-test</artifactId>
209           <version>${infrautils.version}</version>
210           <scope>test</scope>
211         </dependency>
212         <dependency>
213             <groupId>org.opendaylight.genius</groupId>
214             <artifactId>mdsalutil-testutils</artifactId>
215             <version>${genius.version}</version>
216             <scope>test</scope>
217         </dependency>
218         <dependency>
219             <groupId>org.opendaylight.netvirt</groupId>
220             <artifactId>neutronvpn-impl</artifactId>
221             <version>${project.version}</version>
222             <scope>test</scope>
223         </dependency>
224         <dependency>
225             <groupId>org.opendaylight.genius</groupId>
226             <artifactId>testutils</artifactId>
227             <version>${genius.version}</version>
228             <scope>test</scope>
229         </dependency>
230     </dependencies>
231
232     <build>
233         <plugins>
234             <plugin>
235                 <groupId>org.apache.aries.blueprint</groupId>
236                 <artifactId>blueprint-maven-plugin</artifactId>
237             </plugin>
238             <plugin>
239                 <groupId>org.apache.felix</groupId>
240                 <artifactId>maven-bundle-plugin</artifactId>
241                 <extensions>true</extensions>
242                 <configuration>
243                     <instructions>
244                         <Embed-Transitive>true</Embed-Transitive>
245                         <!-- We purposely don't export any packages to avoid any dependencies
246                              on this bundle and prevent @Singleton annotated classes from being
247                              accidently included in another bundle's blueprint XML  -->
248                         <Export-Package/>
249                     </instructions>
250                 </configuration>
251             </plugin>
252             <plugin>
253                 <groupId>org.codehaus.mojo</groupId>
254                 <artifactId>build-helper-maven-plugin</artifactId>
255                 <executions>
256                     <execution>
257                         <id>attach-artifacts</id>
258                         <goals>
259                             <goal>attach-artifact</goal>
260                         </goals>
261                         <phase>package</phase>
262                         <configuration>
263                             <artifacts>
264                                 <artifact>
265                                     <file>${project.build.directory}/classes/initial/netvirt-elanmanager-config.xml
266                                     </file>
267                                     <type>xml</type>
268                                     <classifier>config</classifier>
269                                 </artifact>
270                             </artifacts>
271                         </configuration>
272                     </execution>
273                 </executions>
274             </plugin>
275             <plugin>
276                 <groupId>org.eclipse.xtend</groupId>
277                 <artifactId>xtend-maven-plugin</artifactId>
278             </plugin>
279         </plugins>
280     </build>
281 </project>