Release Aluminium
[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.11.4</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.mdsal</groupId>
41             <artifactId>mdsal-binding-util</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>org.opendaylight.genius</groupId>
45             <artifactId>interfacemanager-api</artifactId>
46             <version>${genius.version}</version>
47         </dependency>
48         <dependency>
49             <groupId>org.opendaylight.genius</groupId>
50             <artifactId>itm-api</artifactId>
51             <version>${genius.version}</version>
52         </dependency>
53         <dependency>
54             <groupId>org.opendaylight.serviceutils</groupId>
55             <artifactId>tools-api</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.genius</groupId>
59             <artifactId>mdsalutil-api</artifactId>
60             <version>${genius.version}</version>
61         </dependency>
62         <dependency>
63             <groupId>org.opendaylight.serviceutils</groupId>
64             <artifactId>srm-api</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.infrautils</groupId>
68             <artifactId>diagstatus-api</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.opendaylight.netvirt</groupId>
72             <artifactId>cache-impl</artifactId>
73             <version>${project.version}</version>
74             <scope>test</scope>
75         </dependency>
76         <dependency>
77             <groupId>${project.groupId}</groupId>
78             <artifactId>neutronvpn-api</artifactId>
79             <version>${project.version}</version>
80         </dependency>
81         <dependency>
82             <groupId>org.opendaylight.ovsdb</groupId>
83             <artifactId>hwvtepsouthbound-api</artifactId>
84             <version>${ovsdb.version}</version>
85         </dependency>
86         <dependency>
87             <groupId>org.opendaylight.neutron</groupId>
88             <artifactId>model</artifactId>
89             <version>${neutron.version}</version>
90         </dependency>
91         <dependency>
92             <groupId>org.apache.karaf.shell</groupId>
93             <artifactId>org.apache.karaf.shell.console</artifactId>
94             <scope>provided</scope>
95         </dependency>
96         <dependency>
97             <groupId>${project.groupId}</groupId>
98             <artifactId>dhcpservice-api</artifactId>
99             <version>${project.version}</version>
100         </dependency>
101         <dependency>
102             <groupId>org.opendaylight.ovsdb</groupId>
103             <artifactId>southbound-api</artifactId>
104             <version>${ovsdb.version}</version>
105         </dependency>
106         <dependency>
107             <groupId>org.opendaylight.ovsdb</groupId>
108             <artifactId>utils.mdsal-utils</artifactId>
109             <version>${ovsdb.version}</version>
110         </dependency>
111         <dependency>
112             <groupId>org.opendaylight.ovsdb</groupId>
113             <artifactId>utils.southbound-utils</artifactId>
114             <version>${ovsdb.version}</version>
115         </dependency>
116         <dependency>
117             <groupId>${project.groupId}</groupId>
118             <artifactId>vpnmanager-api</artifactId>
119             <version>${project.version}</version>
120         </dependency>
121         <dependency>
122             <groupId>org.opendaylight.openflowplugin</groupId>
123             <artifactId>openflowplugin-extension-nicira</artifactId>
124         </dependency>
125         <dependency>
126             <groupId>org.opendaylight.openflowplugin.model</groupId>
127             <artifactId>model-flow-service</artifactId>
128         </dependency>
129         <dependency>
130             <groupId>org.opendaylight.openflowplugin.model</groupId>
131             <artifactId>model-flow-base</artifactId>
132         </dependency>
133         <dependency>
134             <groupId>org.apache.aries.blueprint</groupId>
135             <artifactId>blueprint-maven-plugin-annotation</artifactId>
136             <optional>true</optional>
137         </dependency>
138         <dependency>
139             <groupId>org.opendaylight.infrautils</groupId>
140             <artifactId>inject</artifactId>
141         </dependency>
142         <dependency>
143             <groupId>javax.inject</groupId>
144             <artifactId>javax.inject</artifactId>
145             <scope>provided</scope>
146             <optional>true</optional>
147         </dependency>
148
149         <!-- Only for unit-test -->
150         <dependency>
151             <groupId>org.opendaylight.yangtools</groupId>
152             <artifactId>testutils</artifactId>
153             <scope>test</scope>
154         </dependency>
155         <dependency>
156             <groupId>org.opendaylight.genius</groupId>
157             <artifactId>mdsalutil-api</artifactId>
158             <version>${genius.version}</version>
159             <scope>test</scope>
160             <type>test-jar</type>
161         </dependency>
162         <dependency>
163             <groupId>org.opendaylight.genius</groupId>
164             <artifactId>mdsalutil-impl</artifactId>
165             <version>${genius.version}</version>
166             <scope>test</scope>
167         </dependency>
168         <dependency>
169             <groupId>org.opendaylight.mdsal</groupId>
170             <artifactId>mdsal-binding-test-utils</artifactId>
171         </dependency>
172         <dependency>
173             <groupId>org.opendaylight.genius</groupId>
174             <artifactId>lockmanager-impl</artifactId>
175             <version>${genius.version}</version>
176             <scope>test</scope>
177         </dependency>
178         <dependency>
179             <groupId>org.opendaylight.genius</groupId>
180             <artifactId>idmanager-impl</artifactId>
181             <version>${genius.version}</version>
182             <scope>test</scope>
183         </dependency>
184         <dependency>
185             <groupId>org.opendaylight.genius</groupId>
186             <artifactId>interfacemanager-impl</artifactId>
187             <version>${genius.version}</version>
188             <scope>test</scope>
189         </dependency>
190         <dependency>
191             <groupId>org.opendaylight.infrautils</groupId>
192             <artifactId>metrics-impl-test</artifactId>
193             <version>1.8.4</version>
194             <scope>test</scope>
195         </dependency>
196         <dependency>
197             <groupId>org.opendaylight.infrautils</groupId>
198             <artifactId>inject.guice.testutils</artifactId>
199         </dependency>
200         <dependency>
201             <groupId>org.opendaylight.infrautils</groupId>
202             <artifactId>infrautils-testutils</artifactId>
203         </dependency>
204         <dependency>
205           <groupId>org.opendaylight.infrautils</groupId>
206           <artifactId>caches-test</artifactId>
207         </dependency>
208         <dependency>
209             <groupId>org.opendaylight.genius</groupId>
210             <artifactId>mdsalutil-testutils</artifactId>
211             <version>${genius.version}</version>
212             <scope>test</scope>
213         </dependency>
214         <dependency>
215             <groupId>org.opendaylight.netvirt</groupId>
216             <artifactId>neutronvpn-impl</artifactId>
217             <version>${project.version}</version>
218             <scope>test</scope>
219         </dependency>
220         <dependency>
221             <groupId>org.opendaylight.genius</groupId>
222             <artifactId>testutils</artifactId>
223             <version>${genius.version}</version>
224             <scope>test</scope>
225         </dependency>
226     </dependencies>
227
228     <build>
229         <plugins>
230             <plugin>
231                 <groupId>org.apache.aries.blueprint</groupId>
232                 <artifactId>blueprint-maven-plugin</artifactId>
233             </plugin>
234             <plugin>
235                 <groupId>org.apache.felix</groupId>
236                 <artifactId>maven-bundle-plugin</artifactId>
237                 <extensions>true</extensions>
238                 <configuration>
239                     <instructions>
240                         <Embed-Transitive>true</Embed-Transitive>
241                         <!-- We purposely don't export any packages to avoid any dependencies
242                              on this bundle and prevent @Singleton annotated classes from being
243                              accidently included in another bundle's blueprint XML  -->
244                         <Export-Package/>
245                     </instructions>
246                 </configuration>
247             </plugin>
248             <plugin>
249                 <groupId>org.codehaus.mojo</groupId>
250                 <artifactId>build-helper-maven-plugin</artifactId>
251                 <executions>
252                     <execution>
253                         <id>attach-artifacts</id>
254                         <goals>
255                             <goal>attach-artifact</goal>
256                         </goals>
257                         <phase>package</phase>
258                         <configuration>
259                             <artifacts>
260                                 <artifact>
261                                     <file>${project.build.directory}/classes/initial/netvirt-elanmanager-config.xml
262                                     </file>
263                                     <type>xml</type>
264                                     <classifier>config</classifier>
265                                 </artifact>
266                             </artifacts>
267                         </configuration>
268                     </execution>
269                 </executions>
270             </plugin>
271             <plugin>
272                 <groupId>org.eclipse.xtend</groupId>
273                 <artifactId>xtend-maven-plugin</artifactId>
274             </plugin>
275             <plugin>
276                 <groupId>org.apache.maven.plugins</groupId>
277                 <artifactId>maven-compiler-plugin</artifactId>
278                 <configuration>
279                     <source>1.8</source>
280                     <target>1.8</target>
281                 </configuration>
282             </plugin>
283         </plugins>
284     </build>
285 </project>