Neutron Port allocation for DHCP Service
[netvirt.git] / vpnservice / elanmanager / elanmanager-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: --><!-- Copyright (c) 2016 Ericsson India Global Services Pvt Ltd. and others.
3   All rights reserved. This program and the accompanying materials are made
4   available under the terms of the Eclipse Public License v1.0 which accompanies
5   this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html -->
6 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
7   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
8
9   <parent>
10     <groupId>org.opendaylight.netvirt</groupId>
11     <artifactId>binding-parent</artifactId>
12     <version>0.5.0-SNAPSHOT</version>
13     <relativePath>../../commons/binding-parent</relativePath>
14   </parent>
15
16   <modelVersion>4.0.0</modelVersion>
17   <artifactId>elanmanager-impl</artifactId>
18   <name>ODL :: netvirt :: ${project.artifactId}</name>
19   <packaging>bundle</packaging>
20
21   <dependencies>
22     <dependency>
23       <groupId>${project.groupId}</groupId>
24       <artifactId>elanmanager-api</artifactId>
25       <version>${project.version}</version>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.genius</groupId>
29       <artifactId>mdsalutil-api</artifactId>
30       <version>${genius.version}</version>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.genius</groupId>
34       <artifactId>interfacemanager-api</artifactId>
35       <version>${genius.version}</version>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.genius</groupId>
39       <artifactId>itm-api</artifactId>
40       <version>${genius.version}</version>
41     </dependency>
42     <dependency>
43       <groupId>${project.groupId}</groupId>
44       <artifactId>neutronvpn-api</artifactId>
45       <version>${project.version}</version>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.controller</groupId>
49       <artifactId>sal-binding-broker-impl</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.ovsdb</groupId>
53       <artifactId>hwvtepsouthbound-api</artifactId>
54       <version>${ovsdb.version}</version>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.neutron</groupId>
58       <artifactId>model</artifactId>
59       <version>${neutron.version}</version>
60     </dependency>
61     <dependency>
62       <groupId>org.apache.karaf.shell</groupId>
63       <artifactId>org.apache.karaf.shell.console</artifactId>
64       <scope>provided</scope>
65     </dependency>
66     <dependency>
67       <groupId>${project.groupId}</groupId>
68       <artifactId>dhcpservice-api</artifactId>
69       <version>${project.version}</version>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.ovsdb</groupId>
73       <artifactId>southbound-api</artifactId>
74       <version>${ovsdb.version}</version>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.ovsdb</groupId>
78       <artifactId>utils.mdsal-utils</artifactId>
79       <version>${ovsdb.version}</version>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.ovsdb</groupId>
83       <artifactId>utils.southbound-utils</artifactId>
84       <version>${ovsdb.version}</version>
85     </dependency>
86     <dependency>
87       <groupId>${project.groupId}</groupId>
88       <artifactId>vpnmanager-api</artifactId>
89       <version>${project.version}</version>
90     </dependency>
91
92     <!-- Only for unit-test -->
93     <dependency>
94       <groupId>org.opendaylight.yangtools</groupId>
95       <artifactId>testutils</artifactId>
96       <scope>test</scope>
97     </dependency>
98     <dependency>
99       <groupId>org.opendaylight.genius</groupId>
100       <artifactId>mdsalutil-api</artifactId>
101       <version>${genius.version}</version>
102       <scope>test</scope>
103       <type>test-jar</type>
104     </dependency>
105     <dependency>
106       <groupId>org.opendaylight.controller</groupId>
107       <artifactId>sal-binding-broker-impl</artifactId>
108       <scope>test</scope>
109       <type>test-jar</type>
110     </dependency>
111     <dependency>
112       <groupId>org.opendaylight.mdsal</groupId>
113       <artifactId>mdsal-binding-test-utils</artifactId>
114       <scope>test</scope>
115     </dependency>
116     <dependency>
117       <groupId>org.opendaylight.genius</groupId>
118       <artifactId>lockmanager-impl</artifactId>
119       <version>${genius.version}</version>
120       <scope>test</scope>
121     </dependency>
122     <dependency>
123       <groupId>org.opendaylight.genius</groupId>
124       <artifactId>idmanager-impl</artifactId>
125       <version>${genius.version}</version>
126       <scope>test</scope>
127     </dependency>
128     <dependency>
129       <groupId>org.opendaylight.genius</groupId>
130       <artifactId>interfacemanager-impl</artifactId>
131       <version>${genius.version}</version>
132       <scope>test</scope>
133     </dependency>
134     <dependency>
135       <groupId>org.opendaylight.infrautils</groupId>
136       <artifactId>inject.guice.testutils</artifactId>
137       <version>${infrautils.version}</version>
138       <scope>test</scope>
139     </dependency>
140     <dependency>
141       <groupId>org.opendaylight.infrautils</groupId>
142       <artifactId>infrautils-testutils</artifactId>
143       <version>${infrautils.version}</version>
144       <scope>test</scope>
145     </dependency>
146     <dependency>
147       <groupId>org.opendaylight.genius</groupId>
148       <artifactId>mdsalutil-testutils</artifactId>
149       <version>${genius.version}</version>
150       <scope>test</scope>
151     </dependency>
152     <dependency>
153       <groupId>org.opendaylight.netvirt</groupId>
154       <artifactId>neutronvpn-impl</artifactId>
155       <version>${project.version}</version>
156       <scope>test</scope>
157     </dependency>
158     <dependency>
159       <groupId>org.opendaylight.genius</groupId>
160       <artifactId>testutils</artifactId>
161       <version>${genius.version}</version>
162       <scope>test</scope>
163     </dependency>
164   </dependencies>
165
166   <build>
167     <plugins>
168       <plugin>
169         <groupId>org.apache.felix</groupId>
170         <artifactId>maven-bundle-plugin</artifactId>
171         <extensions>true</extensions>
172         <configuration>
173           <instructions>
174             <Embed-Transitive>true</Embed-Transitive>
175             <!-- This bundle works with Karaf 3 and 4.0 -->
176             <Import-Package>
177               org.apache.karaf.shell.commands;version="[3.0.0,4.1)",
178               org.apache.karaf.shell.console;version="[3.0.0,4.1)",
179               *
180             </Import-Package>
181           </instructions>
182         </configuration>
183       </plugin>
184       <plugin>
185         <groupId>org.codehaus.mojo</groupId>
186         <artifactId>build-helper-maven-plugin</artifactId>
187         <executions>
188           <execution>
189             <id>attach-artifacts</id>
190             <goals>
191               <goal>attach-artifact</goal>
192             </goals>
193             <phase>package</phase>
194             <configuration>
195               <artifacts>
196                 <artifact>
197                   <file>${project.build.directory}/classes/initial/netvirt-elanmanager-config.xml</file>
198                   <type>xml</type>
199                   <classifier>config</classifier>
200                 </artifact>
201               </artifacts>
202             </configuration>
203           </execution>
204         </executions>
205       </plugin>
206       <plugin>
207         <groupId>org.eclipse.xtend</groupId>
208         <artifactId>xtend-maven-plugin</artifactId>
209       </plugin>
210     </plugins>
211   </build>
212
213   <!-- Maven Site Configuration The following configuration is necessary
214     for maven-site-plugin to correctly identify the correct deployment path for
215     OpenDaylight Maven sites. -->
216   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
217
218   <distributionManagement>
219     <site>
220       <id>opendaylight-site</id>
221       <url>${nexus.site.url}/${project.artifactId}/</url>
222     </site>
223   </distributionManagement>
224 </project>