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