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