BUG-6020: Implement RibSupport tests for extensions
[bgpcep.git] / bgp / rib-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10
11 <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">
12
13     <modelVersion>4.0.0</modelVersion>
14     <scm>
15         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
16         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
17         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
18         <tag>HEAD</tag>
19     </scm>
20     <parent>
21         <groupId>org.opendaylight.bgpcep</groupId>
22         <artifactId>bgp-parent</artifactId>
23         <version>0.6.0-SNAPSHOT</version>
24     </parent>
25
26     <artifactId>bgp-rib-impl</artifactId>
27     <description>BGP RIB implementation</description>
28     <packaging>bundle</packaging>
29     <name>${project.artifactId}</name>
30     <prerequisites>
31         <maven>3.0.4</maven>
32     </prerequisites>
33
34     <dependencies>
35         <dependency>
36             <groupId>${project.groupId}</groupId>
37             <artifactId>concepts</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>${project.groupId}</groupId>
41             <artifactId>util</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>${project.groupId}</groupId>
45             <artifactId>bgp-concepts</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>${project.groupId}</groupId>
49             <artifactId>bgp-parser-api</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>${project.groupId}</groupId>
53             <artifactId>bgp-parser-spi</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>${project.groupId}</groupId>
57             <artifactId>bgp-rib-api</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>${project.groupId}</groupId>
61             <artifactId>bgp-rib-spi</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>${project.groupId}</groupId>
65             <artifactId>bgp-rib-spi</artifactId>
66             <type>test-jar</type>
67             <scope>test</scope>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.tcpmd5</groupId>
71             <artifactId>tcpmd5-api</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>org.opendaylight.tcpmd5</groupId>
75             <artifactId>tcpmd5-netty</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>com.google.code.findbugs</groupId>
79             <artifactId>jsr305</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>com.google.guava</groupId>
83             <artifactId>guava</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>io.netty</groupId>
87             <artifactId>netty-codec</artifactId>
88         </dependency>
89         <dependency>
90             <groupId>io.netty</groupId>
91             <artifactId>netty-buffer</artifactId>
92         </dependency>
93         <dependency>
94             <groupId>io.netty</groupId>
95             <artifactId>netty-common</artifactId>
96         </dependency>
97         <dependency>
98             <groupId>io.netty</groupId>
99             <artifactId>netty-transport</artifactId>
100         </dependency>
101         <dependency>
102             <groupId>org.slf4j</groupId>
103             <artifactId>slf4j-api</artifactId>
104         </dependency>
105         <dependency>
106             <groupId>org.opendaylight.controller</groupId>
107             <artifactId>sal-binding-api</artifactId>
108         </dependency>
109         <dependency>
110             <groupId>org.opendaylight.mdsal</groupId>
111             <artifactId>yang-binding</artifactId>
112         </dependency>
113         <dependency>
114             <groupId>org.opendaylight.yangtools</groupId>
115             <artifactId>concepts</artifactId>
116         </dependency>
117         <dependency>
118             <groupId>org.opendaylight.yangtools</groupId>
119             <artifactId>yang-common</artifactId>
120         </dependency>
121         <dependency>
122             <groupId>org.opendaylight.yangtools</groupId>
123             <artifactId>yang-data-api</artifactId>
124         </dependency>
125         <dependency>
126             <groupId>org.opendaylight.yangtools</groupId>
127             <artifactId>yang-model-api</artifactId>
128         </dependency>
129         <dependency>
130             <groupId>org.opendaylight.yangtools</groupId>
131             <artifactId>yang-data-impl</artifactId>
132         </dependency>
133         <dependency>
134             <groupId>org.opendaylight.mdsal.model</groupId>
135             <artifactId>ietf-inet-types</artifactId>
136         </dependency>
137
138         <dependency>
139             <groupId>${project.groupId}</groupId>
140             <artifactId>bgp-parser-impl</artifactId>
141         </dependency>
142         <dependency>
143             <groupId>org.opendaylight.controller</groupId>
144             <artifactId>config-api</artifactId>
145         </dependency>
146         <dependency>
147             <groupId>org.opendaylight.controller</groupId>
148             <artifactId>sal-common-api</artifactId>
149         </dependency>
150         <dependency>
151             <groupId>org.opendaylight.controller</groupId>
152             <artifactId>sal-binding-config</artifactId>
153         </dependency>
154         <dependency>
155             <groupId>org.opendaylight.mdsal</groupId>
156             <artifactId>mdsal-binding-generator-impl</artifactId>
157         </dependency>
158         <dependency>
159             <groupId>org.opendaylight.controller</groupId>
160             <artifactId>netty-config-api</artifactId>
161         </dependency>
162         <dependency>
163             <groupId>org.opendaylight.controller</groupId>
164             <artifactId>netty-timer-config</artifactId>
165         </dependency>
166         <dependency>
167             <groupId>${project.groupId}</groupId>
168             <artifactId>bgp-openconfig-spi</artifactId>
169         </dependency>
170         <dependency>
171             <groupId>${project.groupId}</groupId>
172             <artifactId>bgp-path-selection-mode</artifactId>
173         </dependency>
174
175         <dependency>
176             <groupId>org.osgi</groupId>
177             <artifactId>org.osgi.core</artifactId>
178             <scope>provided</scope>
179         </dependency>
180
181         <!-- Testing dependencies -->
182         <dependency>
183             <groupId>${project.groupId}</groupId>
184             <artifactId>bgp-path-selection-mode</artifactId>
185             <type>test-jar</type>
186             <scope>test</scope>
187         </dependency>
188         <dependency>
189             <groupId>org.mockito</groupId>
190             <artifactId>mockito-core</artifactId>
191         </dependency>
192         <dependency>
193             <groupId>org.opendaylight.yangtools</groupId>
194             <artifactId>mockito-configuration</artifactId>
195         </dependency>
196         <dependency>
197             <groupId>${project.groupId}</groupId>
198             <artifactId>bgp-linkstate</artifactId>
199             <scope>test</scope>
200         </dependency>
201         <dependency>
202             <groupId>${project.groupId}</groupId>
203             <artifactId>bgp-rib-mock</artifactId>
204             <scope>test</scope>
205         </dependency>
206         <dependency>
207             <groupId>${project.groupId}</groupId>
208             <artifactId>bgp-util</artifactId>
209             <scope>test</scope>
210         </dependency>
211         <dependency>
212             <groupId>org.opendaylight.yangtools</groupId>
213             <artifactId>yang-parser-api</artifactId>
214             <scope>test</scope>
215         </dependency>
216         <dependency>
217             <groupId>org.opendaylight.yangtools</groupId>
218             <artifactId>yang-parser-impl</artifactId>
219             <scope>test</scope>
220         </dependency>
221         <dependency>
222             <groupId>junit</groupId>
223             <artifactId>junit</artifactId>
224         </dependency>
225
226         <dependency>
227             <groupId>org.opendaylight.controller</groupId>
228             <artifactId>config-manager</artifactId>
229             <type>test-jar</type>
230             <scope>test</scope>
231         </dependency>
232         <dependency>
233             <groupId>org.opendaylight.controller</groupId>
234             <artifactId>config-manager</artifactId>
235             <scope>test</scope>
236         </dependency>
237         <dependency>
238             <groupId>org.opendaylight.controller</groupId>
239             <artifactId>config-util</artifactId>
240             <scope>test</scope>
241         </dependency>
242         <dependency>
243             <groupId>org.opendaylight.controller</groupId>
244             <artifactId>netty-event-executor-config</artifactId>
245             <scope>test</scope>
246         </dependency>
247         <dependency>
248             <groupId>org.opendaylight.controller</groupId>
249             <artifactId>netty-threadgroup-config</artifactId>
250             <scope>test</scope>
251         </dependency>
252         <dependency>
253             <groupId>org.opendaylight.tcpmd5</groupId>
254             <artifactId>tcpmd5-jni</artifactId>
255             <type>test-jar</type>
256             <scope>test</scope>
257         </dependency>
258         <dependency>
259             <groupId>org.opendaylight.tcpmd5</groupId>
260             <artifactId>tcpmd5-jni</artifactId>
261             <scope>test</scope>
262         </dependency>
263         <dependency>
264             <groupId>org.opendaylight.controller</groupId>
265             <artifactId>sal-binding-broker-impl</artifactId>
266             <scope>test</scope>
267         </dependency>
268         <dependency>
269             <groupId>org.opendaylight.controller</groupId>
270             <artifactId>sal-broker-impl</artifactId>
271             <scope>test</scope>
272         </dependency>
273         <dependency>
274             <groupId>org.opendaylight.controller</groupId>
275             <artifactId>sal-binding-broker-impl</artifactId>
276             <scope>test</scope>
277             <type>test-jar</type>
278         </dependency>
279         <dependency>
280             <groupId>org.opendaylight.controller</groupId>
281             <artifactId>sal-dom-broker-config</artifactId>
282             <scope>test</scope>
283         </dependency>
284     </dependencies>
285
286     <build>
287         <plugins>
288             <plugin>
289                 <groupId>org.apache.felix</groupId>
290                 <artifactId>maven-bundle-plugin</artifactId>
291                 <extensions>true</extensions>
292                 <configuration>
293                     <instructions>
294                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
295                         <Export-Package>
296                             org.opendaylight.protocol.bgp.rib.impl.*,
297                             org.opendaylight.controller.config.yang.bgp.rib.impl,
298                             org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.bgp.rib.impl.rev160330.*
299                         </Export-Package>
300                     </instructions>
301                 </configuration>
302             </plugin>
303             <plugin>
304                 <groupId>org.apache.maven.plugins</groupId>
305                 <artifactId>maven-jar-plugin</artifactId>
306                 <executions>
307                     <execution>
308                         <phase>package</phase>
309                         <goals>
310                             <goal>test-jar</goal>
311                         </goals>
312                     </execution>
313                 </executions>
314             </plugin>
315             <plugin>
316                 <groupId>org.opendaylight.yangtools</groupId>
317                 <artifactId>yang-maven-plugin</artifactId>
318             </plugin>
319         </plugins>
320     </build>
321
322   <!--
323       Maven Site Configuration
324
325       The following configuration is necessary for maven-site-plugin to
326       correctly identify the correct deployment path for OpenDaylight Maven
327       sites.
328   -->
329   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
330
331   <distributionManagement>
332     <site>
333       <id>opendaylight-site</id>
334       <url>${nexus.site.url}/${project.artifactId}/</url>
335     </site>
336   </distributionManagement>
337 </project>