Move RibSupportUtils
[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"
12          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
13
14     <modelVersion>4.0.0</modelVersion>
15     <parent>
16         <groupId>org.opendaylight.bgpcep</groupId>
17         <artifactId>bgpcep-parent</artifactId>
18         <version>0.20.0-SNAPSHOT</version>
19         <relativePath>../../parent</relativePath>
20     </parent>
21
22     <artifactId>bgp-rib-impl</artifactId>
23     <packaging>bundle</packaging>
24     <description>BGP RIB implementation</description>
25     <name>${project.artifactId}</name>
26
27     <dependencies>
28         <dependency>
29             <groupId>${project.groupId}</groupId>
30             <artifactId>bgp-concepts</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>${project.groupId}</groupId>
34             <artifactId>bgp-rib-api</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>${project.groupId}</groupId>
38             <artifactId>bgp-rib-spi</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>${project.groupId}</groupId>
42             <artifactId>bgp-openconfig-api</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>${project.groupId}</groupId>
46             <artifactId>bgp-openconfig-spi</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>${project.groupId}</groupId>
50             <artifactId>bgp-path-selection-mode</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>${project.groupId}</groupId>
54             <artifactId>bgp-openconfig-rp-spi</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>${project.groupId}</groupId>
58             <artifactId>bgp-inet</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>${project.groupId}</groupId>
62             <artifactId>bgp-route-target</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>${project.groupId}</groupId>
66             <artifactId>bgp-parser-api</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>${project.groupId}</groupId>
70             <artifactId>bgp-parser-spi</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>${project.groupId}</groupId>
74             <artifactId>bgp-parser-impl</artifactId>
75         </dependency>
76         <dependency>
77             <groupId>${project.groupId}</groupId>
78             <artifactId>util</artifactId>
79         </dependency>
80         <dependency>
81             <groupId>${project.groupId}</groupId>
82             <artifactId>concepts</artifactId>
83         </dependency>
84         <dependency>
85             <groupId>org.opendaylight.mdsal</groupId>
86             <artifactId>mdsal-dom-api</artifactId>
87         </dependency>
88         <dependency>
89             <groupId>org.opendaylight.mdsal</groupId>
90             <artifactId>mdsal-binding-api</artifactId>
91         </dependency>
92         <dependency>
93             <groupId>org.opendaylight.mdsal</groupId>
94             <artifactId>mdsal-binding-spec-util</artifactId>
95         </dependency>
96         <dependency>
97             <groupId>org.opendaylight.mdsal</groupId>
98             <artifactId>mdsal-common-api</artifactId>
99         </dependency>
100         <dependency>
101             <groupId>org.opendaylight.yangtools</groupId>
102             <artifactId>util</artifactId>
103         </dependency>
104         <dependency>
105             <groupId>org.opendaylight.yangtools</groupId>
106             <artifactId>yang-data-api</artifactId>
107         </dependency>
108         <dependency>
109             <groupId>org.opendaylight.yangtools</groupId>
110             <artifactId>yang-data-tree-api</artifactId>
111         </dependency>
112         <dependency>
113             <groupId>org.opendaylight.yangtools</groupId>
114             <artifactId>yang-data-impl</artifactId>
115         </dependency>
116         <dependency>
117             <groupId>org.opendaylight.yangtools</groupId>
118             <artifactId>yang-common</artifactId>
119         </dependency>
120         <dependency>
121             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
122             <artifactId>rfc6991-ietf-inet-types</artifactId>
123         </dependency>
124         <dependency>
125             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
126             <artifactId>rfc8294-ietf-routing-types</artifactId>
127         </dependency>
128         <dependency>
129             <groupId>org.opendaylight.mdsal</groupId>
130             <artifactId>mdsal-singleton-common-api</artifactId>
131         </dependency>
132         <dependency>
133             <groupId>org.opendaylight.mdsal</groupId>
134             <artifactId>yang-binding</artifactId>
135         </dependency>
136         <dependency>
137             <groupId>org.opendaylight.mdsal</groupId>
138             <artifactId>mdsal-binding-dom-codec-api</artifactId>
139         </dependency>
140         <dependency>
141             <groupId>org.opendaylight.yangtools</groupId>
142             <artifactId>concepts</artifactId>
143         </dependency>
144         <dependency>
145             <groupId>org.apache.commons</groupId>
146             <artifactId>commons-lang3</artifactId>
147         </dependency>
148         <dependency>
149             <groupId>com.google.guava</groupId>
150             <artifactId>guava</artifactId>
151         </dependency>
152         <dependency>
153             <groupId>org.checkerframework</groupId>
154             <artifactId>checker-qual</artifactId>
155             <scope>provided</scope>
156         </dependency>
157         <!--Netty -->
158         <dependency>
159             <groupId>io.netty</groupId>
160             <artifactId>netty-codec</artifactId>
161         </dependency>
162         <dependency>
163             <groupId>io.netty</groupId>
164             <artifactId>netty-common</artifactId>
165         </dependency>
166         <dependency>
167             <groupId>io.netty</groupId>
168             <artifactId>netty-transport</artifactId>
169         </dependency>
170         <dependency>
171             <groupId>io.netty</groupId>
172             <artifactId>netty-buffer</artifactId>
173         </dependency>
174         <dependency>
175             <groupId>io.netty</groupId>
176             <artifactId>netty-transport-classes-epoll</artifactId>
177         </dependency>
178         <dependency>
179             <groupId>io.netty</groupId>
180             <artifactId>netty-transport-native-epoll</artifactId>
181             <classifier>linux-x86_64</classifier>
182         </dependency>
183         <dependency>
184             <groupId>com.guicedee.services</groupId>
185             <artifactId>javax.inject</artifactId>
186             <optional>true</optional>
187         </dependency>
188         <dependency>
189             <groupId>jakarta.annotation</groupId>
190             <artifactId>jakarta.annotation-api</artifactId>
191             <scope>provided</scope>
192             <optional>true</optional>
193         </dependency>
194         <dependency>
195             <groupId>org.osgi</groupId>
196             <artifactId>org.osgi.service.component.annotations</artifactId>
197         </dependency>
198         <dependency>
199             <groupId>org.osgi</groupId>
200             <artifactId>org.osgi.service.metatype.annotations</artifactId>
201         </dependency>
202         <dependency>
203             <groupId>org.kohsuke.metainf-services</groupId>
204             <artifactId>metainf-services</artifactId>
205         </dependency>
206
207         <!-- Testing dependencies -->
208         <dependency>
209             <groupId>${project.groupId}</groupId>
210             <artifactId>bgp-openconfig-rp-impl</artifactId>
211             <scope>test</scope>
212         </dependency>
213         <dependency>
214             <groupId>${project.groupId}</groupId>
215             <artifactId>bgp-openconfig-rp-impl</artifactId>
216             <type>test-jar</type>
217             <scope>test</scope>
218         </dependency>
219         <dependency>
220             <groupId>${project.groupId}</groupId>
221             <artifactId>bgp-rib-spi</artifactId>
222             <type>test-jar</type>
223             <scope>test</scope>
224         </dependency>
225         <dependency>
226             <groupId>${project.groupId}</groupId>
227             <artifactId>testtool-util</artifactId>
228             <scope>test</scope>
229         </dependency>
230         <dependency>
231             <groupId>${project.groupId}</groupId>
232             <artifactId>bgp-path-selection-mode</artifactId>
233             <type>test-jar</type>
234             <scope>test</scope>
235         </dependency>
236         <dependency>
237             <groupId>${project.groupId}</groupId>
238             <artifactId>config-loader-impl</artifactId>
239             <scope>test</scope>
240         </dependency>
241         <dependency>
242             <groupId>${project.groupId}</groupId>
243             <artifactId>config-loader-impl</artifactId>
244             <type>test-jar</type>
245             <scope>test</scope>
246         </dependency>
247         <dependency>
248             <groupId>org.opendaylight.yangtools</groupId>
249             <artifactId>mockito-configuration</artifactId>
250         </dependency>
251         <dependency>
252             <groupId>${project.groupId}</groupId>
253             <artifactId>bgp-linkstate</artifactId>
254             <scope>test</scope>
255         </dependency>
256         <dependency>
257             <groupId>${project.groupId}</groupId>
258             <artifactId>bgp-rib-mock</artifactId>
259             <scope>test</scope>
260         </dependency>
261         <dependency>
262             <groupId>${project.groupId}</groupId>
263             <artifactId>bgp-util</artifactId>
264             <scope>test</scope>
265         </dependency>
266         <dependency>
267             <groupId>org.opendaylight.yangtools</groupId>
268             <artifactId>yang-parser-api</artifactId>
269             <scope>test</scope>
270         </dependency>
271         <dependency>
272             <groupId>org.slf4j</groupId>
273             <artifactId>slf4j-simple</artifactId>
274             <scope>test</scope>
275         </dependency>
276         <dependency>
277             <groupId>${project.groupId}</groupId>
278             <artifactId>bgp-config-example</artifactId>
279             <scope>test</scope>
280         </dependency>
281         <dependency>
282             <groupId>org.opendaylight.mdsal</groupId>
283             <artifactId>mdsal-dom-broker</artifactId>
284             <scope>test</scope>
285         </dependency>
286         <dependency>
287             <groupId>org.opendaylight.mdsal</groupId>
288             <artifactId>mdsal-binding-test-utils</artifactId>
289             <scope>test</scope>
290         </dependency>
291         <dependency>
292             <groupId>org.opendaylight.mdsal</groupId>
293             <artifactId>mdsal-binding-dom-adapter</artifactId>
294             <scope>test</scope>
295         </dependency>
296         <dependency>
297             <groupId>org.opendaylight.mdsal</groupId>
298             <artifactId>mdsal-binding-dom-adapter</artifactId>
299             <scope>test</scope>
300             <type>test-jar</type>
301         </dependency>
302         <dependency>
303             <groupId>ch.qos.logback</groupId>
304             <artifactId>logback-classic</artifactId>
305             <scope>test</scope>
306         </dependency>
307         <dependency>
308             <groupId>org.opendaylight.yangtools</groupId>
309             <artifactId>yang-test-util</artifactId>
310             <scope>test</scope>
311         </dependency>
312         <dependency>
313             <groupId>${project.groupId}</groupId>
314             <artifactId>routing-policy-config-loader</artifactId>
315             <scope>test</scope>
316         </dependency>
317         <dependency>
318             <groupId>${project.groupId}</groupId>
319             <artifactId>routing-policy-config-loader</artifactId>
320             <scope>test</scope>
321             <type>test-jar</type>
322         </dependency>
323         <dependency>
324             <groupId>${project.groupId}</groupId>
325             <artifactId>bgp-openconfig-rp-statement</artifactId>
326             <scope>test</scope>
327         </dependency>
328         <dependency>
329             <groupId>${project.groupId}</groupId>
330             <artifactId>bgp-openconfig-rp-statement</artifactId>
331             <type>test-jar</type>
332             <scope>test</scope>
333         </dependency>
334         <dependency>
335             <groupId>${project.groupId}</groupId>
336             <artifactId>bgp-openconfig-rp-spi</artifactId>
337             <type>test-jar</type>
338             <scope>test</scope>
339         </dependency>
340     </dependencies>
341
342     <build>
343         <plugins>
344             <plugin>
345                 <groupId>org.apache.felix</groupId>
346                 <artifactId>maven-bundle-plugin</artifactId>
347                 <extensions>true</extensions>
348                 <configuration>
349                     <instructions>
350                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
351                         <Export-Package>
352                             org.opendaylight.protocol.bgp.rib.impl.*
353                             ;-split-package:=error
354                         </Export-Package>
355                     </instructions>
356                 </configuration>
357             </plugin>
358             <plugin>
359                 <artifactId>maven-dependency-plugin</artifactId>
360                 <configuration>
361                     <ignoredUnusedDeclaredDependencies>
362                         <ignoredUnusedDeclaredDependency>io.netty:netty-transport-native-epoll</ignoredUnusedDeclaredDependency>
363                     </ignoredUnusedDeclaredDependencies>
364                 </configuration>
365             </plugin>
366             <plugin>
367                 <artifactId>maven-jar-plugin</artifactId>
368                 <executions>
369                     <execution>
370                         <goals>
371                             <goal>test-jar</goal>
372                         </goals>
373                     </execution>
374                 </executions>
375             </plugin>
376             <plugin>
377                 <artifactId>maven-source-plugin</artifactId>
378                 <executions>
379                     <execution>
380                         <goals>
381                             <goal>test-jar-no-fork</goal>
382                         </goals>
383                     </execution>
384                 </executions>
385             </plugin>
386             <plugin>
387                 <artifactId>maven-remote-resources-plugin</artifactId>
388                 <configuration>
389                     <attachToMain>false</attachToMain>
390                     <resourceBundles>
391                         <resourceBundle>${project.groupId}:bgp-config-example:${project.version}</resourceBundle>
392                     </resourceBundles>
393                 </configuration>
394                 <executions>
395                     <execution>
396                         <phase>process-test-sources</phase>
397                         <goals>
398                             <goal>process</goal>
399                         </goals>
400                     </execution>
401                 </executions>
402             </plugin>
403             <!-- Disable offline link detection which breaks the build here -->
404             <plugin>
405                 <artifactId>maven-javadoc-plugin</artifactId>
406                 <configuration>
407                     <detectOfflineLinks>false</detectOfflineLinks>
408                 </configuration>
409             </plugin>
410         </plugins>
411     </build>
412
413     <scm>
414         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
415         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
416         <url>https://wiki.opendaylight.org/display/ODL/BGPCEP</url>
417         <tag>HEAD</tag>
418     </scm>
419 </project>