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