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