Release Oxygen
[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 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11
12     <modelVersion>4.0.0</modelVersion>
13     <parent>
14         <groupId>org.opendaylight.bgpcep</groupId>
15         <artifactId>bgpcep-parent</artifactId>
16         <version>0.9.4</version>
17         <relativePath>../../parent</relativePath>
18     </parent>
19
20     <artifactId>bgp-rib-impl</artifactId>
21     <packaging>bundle</packaging>
22     <description>BGP RIB implementation</description>
23     <name>${project.artifactId}</name>
24
25     <dependencies>
26         <dependency>
27             <groupId>${project.groupId}</groupId>
28             <artifactId>bgp-concepts</artifactId>
29         </dependency>
30         <dependency>
31             <groupId>${project.groupId}</groupId>
32             <artifactId>bgp-rib-spi</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>${project.groupId}</groupId>
36             <artifactId>config-loader-spi</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>${project.groupId}</groupId>
40             <artifactId>bgp-openconfig-spi</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>${project.groupId}</groupId>
44             <artifactId>bgp-path-selection-mode</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>${project.groupId}</groupId>
48             <artifactId>bgp-inet</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>${project.groupId}</groupId>
52             <artifactId>bgp-parser-impl</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.controller</groupId>
56             <artifactId>sal-binding-config</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.mdsal</groupId>
60             <artifactId>mdsal-binding-generator-impl</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>org.osgi</groupId>
64             <artifactId>org.osgi.core</artifactId>
65             <scope>provided</scope>
66         </dependency>
67         <dependency>
68             <groupId>org.osgi</groupId>
69             <artifactId>org.osgi.compendium</artifactId>
70         </dependency>
71
72         <!--Netty -->
73         <dependency>
74             <groupId>org.opendaylight.controller</groupId>
75             <artifactId>netty-timer-config</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>io.netty</groupId>
79             <artifactId>netty-codec</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>io.netty</groupId>
83             <artifactId>netty-transport-native-epoll</artifactId>
84             <classifier>linux-x86_64</classifier>
85         </dependency>
86         <!-- Testing dependencies -->
87         <dependency>
88             <groupId>${project.groupId}</groupId>
89             <artifactId>bgp-rib-spi</artifactId>
90             <type>test-jar</type>
91             <scope>test</scope>
92         </dependency>
93         <dependency>
94             <groupId>${project.groupId}</groupId>
95             <artifactId>testtool-util</artifactId>
96             <scope>test</scope>
97         </dependency>
98         <dependency>
99             <groupId>${project.groupId}</groupId>
100             <artifactId>bgp-path-selection-mode</artifactId>
101             <type>test-jar</type>
102             <scope>test</scope>
103         </dependency>
104         <dependency>
105             <groupId>${project.groupId}</groupId>
106             <artifactId>config-loader-impl</artifactId>
107             <scope>test</scope>
108         </dependency>
109         <dependency>
110             <groupId>${project.groupId}</groupId>
111             <artifactId>config-loader-impl</artifactId>
112             <type>test-jar</type>
113             <scope>test</scope>
114         </dependency>
115         <dependency>
116             <groupId>org.mockito</groupId>
117             <artifactId>mockito-core</artifactId>
118         </dependency>
119         <dependency>
120             <groupId>org.opendaylight.yangtools</groupId>
121             <artifactId>mockito-configuration</artifactId>
122         </dependency>
123         <dependency>
124             <groupId>${project.groupId}</groupId>
125             <artifactId>bgp-linkstate</artifactId>
126             <scope>test</scope>
127         </dependency>
128         <dependency>
129             <groupId>${project.groupId}</groupId>
130             <artifactId>bgp-rib-mock</artifactId>
131             <scope>test</scope>
132         </dependency>
133         <dependency>
134             <groupId>${project.groupId}</groupId>
135             <artifactId>bgp-util</artifactId>
136             <scope>test</scope>
137         </dependency>
138         <dependency>
139             <groupId>org.opendaylight.yangtools</groupId>
140             <artifactId>yang-parser-api</artifactId>
141             <scope>test</scope>
142         </dependency>
143         <dependency>
144             <groupId>org.slf4j</groupId>
145             <artifactId>slf4j-simple</artifactId>
146             <scope>test</scope>
147         </dependency>
148         <dependency>
149             <groupId>junit</groupId>
150             <artifactId>junit</artifactId>
151         </dependency>
152         <dependency>
153             <groupId>org.opendaylight.controller</groupId>
154             <artifactId>config-manager</artifactId>
155             <type>test-jar</type>
156             <scope>test</scope>
157         </dependency>
158         <dependency>
159             <groupId>${project.groupId}</groupId>
160             <artifactId>bgp-config-example</artifactId>
161             <scope>test</scope>
162         </dependency>
163         <dependency>
164             <groupId>org.opendaylight.controller</groupId>
165             <artifactId>config-manager</artifactId>
166             <scope>test</scope>
167         </dependency>
168         <dependency>
169             <groupId>org.opendaylight.controller</groupId>
170             <artifactId>config-util</artifactId>
171             <scope>test</scope>
172         </dependency>
173         <dependency>
174             <groupId>org.opendaylight.controller</groupId>
175             <artifactId>netty-event-executor-config</artifactId>
176             <scope>test</scope>
177         </dependency>
178         <dependency>
179             <groupId>org.opendaylight.controller</groupId>
180             <artifactId>netty-threadgroup-config</artifactId>
181             <scope>test</scope>
182         </dependency>
183         <dependency>
184             <groupId>org.opendaylight.mdsal</groupId>
185             <artifactId>mdsal-binding-dom-adapter</artifactId>
186             <scope>test</scope>
187         </dependency>
188         <dependency>
189             <groupId>org.opendaylight.controller</groupId>
190             <artifactId>sal-broker-impl</artifactId>
191             <scope>test</scope>
192         </dependency>
193         <dependency>
194             <groupId>org.opendaylight.controller</groupId>
195             <artifactId>sal-binding-broker-impl</artifactId>
196             <scope>test</scope>
197             <type>test-jar</type>
198         </dependency>
199         <dependency>
200             <groupId>org.opendaylight.controller</groupId>
201             <artifactId>sal-dom-broker-config</artifactId>
202             <scope>test</scope>
203         </dependency>
204         <dependency>
205             <groupId>ch.qos.logback</groupId>
206             <artifactId>logback-classic</artifactId>
207             <scope>test</scope>
208         </dependency>
209         <dependency>
210             <groupId>org.powermock</groupId>
211             <artifactId>powermock-module-junit4</artifactId>
212             <scope>test</scope>
213         </dependency>
214         <dependency>
215             <groupId>org.powermock</groupId>
216             <artifactId>powermock-api-mockito</artifactId>
217             <scope>test</scope>
218         </dependency>
219         <dependency>
220             <groupId>org.opendaylight.yangtools</groupId>
221             <artifactId>yang-test-util</artifactId>
222             <scope>test</scope>
223         </dependency>
224     </dependencies>
225
226     <build>
227         <plugins>
228             <plugin>
229                 <groupId>org.apache.maven.plugins</groupId>
230                 <artifactId>maven-checkstyle-plugin</artifactId>
231                 <configuration>
232                     <propertyExpansion>checkstyle.violationSeverity=warning</propertyExpansion>
233                 </configuration>
234                 <dependencies>
235                     <dependency>
236                         <groupId>org.opendaylight.yangtools</groupId>
237                         <artifactId>checkstyle-logging</artifactId>
238                         <!-- FIXME: remove this declaration when bumping to 2.0.2 -->
239                         <version>2.0.6.5</version>
240                     </dependency>
241                 </dependencies>
242             </plugin>
243             <plugin>
244                 <groupId>org.apache.felix</groupId>
245                 <artifactId>maven-bundle-plugin</artifactId>
246                 <extensions>true</extensions>
247                 <configuration>
248                     <instructions>
249                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
250                         <Export-Package>
251                             org.opendaylight.protocol.bgp.rib.impl.*
252                             ;-split-package:=error
253                         </Export-Package>
254                     </instructions>
255                 </configuration>
256             </plugin>
257             <plugin>
258                 <groupId>org.apache.maven.plugins</groupId>
259                 <artifactId>maven-jar-plugin</artifactId>
260                 <executions>
261                     <execution>
262                         <phase>package</phase>
263                         <goals>
264                             <goal>test-jar</goal>
265                         </goals>
266                     </execution>
267                 </executions>
268             </plugin>
269             <plugin>
270                 <groupId>org.apache.maven.plugins</groupId>
271                 <artifactId>maven-remote-resources-plugin</artifactId>
272                 <configuration>
273                     <attachToMain>false</attachToMain>
274                     <resourceBundles>
275                         <resourceBundle>${project.groupId}:bgp-config-example:${project.version}</resourceBundle>
276                     </resourceBundles>
277                 </configuration>
278                 <executions>
279                     <execution>
280                         <phase>process-test-sources</phase>
281                         <goals>
282                             <goal>process</goal>
283                         </goals>
284                     </execution>
285                 </executions>
286             </plugin>
287             <plugin>
288                 <groupId>org.codehaus.mojo</groupId>
289                 <artifactId>findbugs-maven-plugin</artifactId>
290                 <configuration>
291                     <failOnError>false</failOnError>
292                 </configuration>
293             </plugin>
294             <!-- Disable offline link detection which breaks the build here -->
295             <plugin>
296                 <artifactId>maven-javadoc-plugin</artifactId>
297                 <configuration>
298                     <detectOfflineLinks>false</detectOfflineLinks>
299                 </configuration>
300             </plugin>
301         </plugins>
302     </build>
303
304     <scm>
305         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
306         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
307         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
308         <tag>HEAD</tag>
309     </scm>
310 </project>