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