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