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