BGPCEP-712: Enforce checkstyle under binding-parent
[bgpcep.git] / bmp / bmp-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
4
5  This program and the accompanying materials are made available under the
6  terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12     <modelVersion>4.0.0</modelVersion>
13     <parent>
14         <groupId>org.opendaylight.bgpcep</groupId>
15         <artifactId>bgpcep-parent</artifactId>
16         <version>0.10.0-SNAPSHOT</version>
17         <relativePath>../../parent</relativePath>
18     </parent>
19
20     <artifactId>bgp-bmp-impl</artifactId>
21     <packaging>bundle</packaging>
22     <name>${project.artifactId}</name>
23
24     <dependencies>
25         <dependency>
26             <groupId>${project.groupId}</groupId>
27             <artifactId>bgp-bmp-api</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>${project.groupId}</groupId>
31             <artifactId>bgp-bmp-parser-impl</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.opendaylight.controller</groupId>
35             <artifactId>sal-broker-impl</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>${project.groupId}</groupId>
39             <artifactId>bgp-bmp-spi</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.slf4j</groupId>
43             <artifactId>slf4j-api</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>org.slf4j</groupId>
47             <artifactId>slf4j-simple</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>${project.groupId}</groupId>
51             <artifactId>util</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>${project.groupId}</groupId>
55             <artifactId>bgp-parser-api</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>${project.groupId}</groupId>
59             <artifactId>bgp-rib-api</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>${project.groupId}</groupId>
63             <artifactId>bgp-rib-spi</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>${project.groupId}</groupId>
67             <artifactId>bgp-inet</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.mdsal</groupId>
71             <artifactId>yang-binding</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>org.opendaylight.yangtools</groupId>
75             <artifactId>concepts</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>org.opendaylight.yangtools</groupId>
79             <artifactId>yang-common</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>org.opendaylight.yangtools</groupId>
83             <artifactId>yang-data-api</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>org.opendaylight.yangtools</groupId>
87             <artifactId>yang-data-impl</artifactId>
88         </dependency>
89         <dependency>
90             <groupId>org.opendaylight.controller</groupId>
91             <artifactId>sal-common-api</artifactId>
92         </dependency>
93         <dependency>
94             <groupId>org.opendaylight.controller</groupId>
95             <artifactId>sal-core-api</artifactId>
96         </dependency>
97         <dependency>
98             <groupId>org.opendaylight.mdsal</groupId>
99             <artifactId>mdsal-binding-generator-impl</artifactId>
100         </dependency>
101         <dependency>
102             <groupId>org.opendaylight.mdsal</groupId>
103             <artifactId>mdsal-binding-dom-codec</artifactId>
104         </dependency>
105         <dependency>
106             <groupId>org.opendaylight.controller</groupId>
107             <artifactId>sal-binding-config</artifactId>
108         </dependency>
109         <dependency>
110             <groupId>io.netty</groupId>
111             <artifactId>netty-buffer</artifactId>
112         </dependency>
113         <dependency>
114             <groupId>io.netty</groupId>
115             <artifactId>netty-codec</artifactId>
116         </dependency>
117         <dependency>
118             <groupId>io.netty</groupId>
119             <artifactId>netty-common</artifactId>
120         </dependency>
121         <dependency>
122             <groupId>io.netty</groupId>
123             <artifactId>netty-transport</artifactId>
124         </dependency>
125         <dependency>
126             <groupId>io.netty</groupId>
127             <artifactId>netty-transport-native-epoll</artifactId>
128             <classifier>linux-x86_64</classifier>
129         </dependency>
130         <dependency>
131             <groupId>io.netty</groupId>
132             <artifactId>netty-handler</artifactId>
133         </dependency>
134         <dependency>
135             <groupId>com.google.guava</groupId>
136             <artifactId>guava</artifactId>
137         </dependency>
138         <dependency>
139             <groupId>org.osgi</groupId>
140             <artifactId>org.osgi.core</artifactId>
141         </dependency>
142         <dependency>
143             <groupId>${project.groupId}</groupId>
144             <artifactId>bgp-parser-spi</artifactId>
145         </dependency>
146         <dependency>
147             <groupId>${project.groupId}</groupId>
148             <artifactId>bgp-concepts</artifactId>
149         </dependency>
150         <dependency>
151             <groupId>${project.groupId}</groupId>
152             <artifactId>concepts</artifactId>
153         </dependency>
154         <dependency>
155             <groupId>org.opendaylight.mdsal.model</groupId>
156             <artifactId>ietf-yang-types-20130715</artifactId>
157         </dependency>
158         <dependency>
159             <groupId>org.opendaylight.mdsal.model</groupId>
160             <artifactId>ietf-inet-types-2013-07-15</artifactId>
161         </dependency>
162         <dependency>
163             <groupId>org.opendaylight.yangtools</groupId>
164             <artifactId>yang-model-api</artifactId>
165         </dependency>
166         <dependency>
167             <groupId>org.opendaylight.controller</groupId>
168             <artifactId>config-api</artifactId>
169         </dependency>
170         <dependency>
171             <groupId>org.opendaylight.controller</groupId>
172             <artifactId>netty-config-api</artifactId>
173         </dependency>
174         <dependency>
175             <groupId>org.javassist</groupId>
176             <artifactId>javassist</artifactId>
177         </dependency>
178         <dependency>
179             <groupId>${project.groupId}</groupId>
180             <artifactId>config-loader-spi</artifactId>
181         </dependency>
182         <!-- test dependencies -->
183         <dependency>
184             <groupId>junit</groupId>
185             <artifactId>junit</artifactId>
186         </dependency>
187         <dependency>
188             <groupId>org.mockito</groupId>
189             <artifactId>mockito-core</artifactId>
190         </dependency>
191         <dependency>
192             <groupId>org.opendaylight.yangtools</groupId>
193             <artifactId>mockito-configuration</artifactId>
194         </dependency>
195         <dependency>
196             <groupId>org.opendaylight.controller</groupId>
197             <artifactId>sal-binding-broker-impl</artifactId>
198             <scope>test</scope>
199             <type>test-jar</type>
200         </dependency>
201         <dependency>
202             <groupId>org.opendaylight.mdsal</groupId>
203             <artifactId>mdsal-binding-dom-adapter</artifactId>
204             <scope>test</scope>
205         </dependency>
206         <dependency>
207             <groupId>${project.groupId}</groupId>
208             <artifactId>bgp-rib-impl</artifactId>
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>org.opendaylight.controller</groupId>
218             <artifactId>config-manager</artifactId>
219             <type>test-jar</type>
220             <scope>test</scope>
221         </dependency>
222         <dependency>
223             <groupId>org.opendaylight.controller</groupId>
224             <artifactId>config-manager</artifactId>
225             <scope>test</scope>
226         </dependency>
227         <dependency>
228             <groupId>org.opendaylight.controller</groupId>
229             <artifactId>netty-event-executor-config</artifactId>
230             <scope>test</scope>
231         </dependency>
232         <dependency>
233             <groupId>org.opendaylight.controller</groupId>
234             <artifactId>netty-threadgroup-config</artifactId>
235             <scope>test</scope>
236         </dependency>
237         <dependency>
238             <groupId>org.opendaylight.controller</groupId>
239             <artifactId>sal-dom-broker-config</artifactId>
240             <scope>test</scope>
241         </dependency>
242         <dependency>
243             <groupId>${project.groupId}</groupId>
244             <artifactId>bgp-bmp-parser-impl</artifactId>
245             <version>${project.version}</version>
246             <type>test-jar</type>
247             <scope>test</scope>
248         </dependency>
249         <dependency>
250             <groupId>org.opendaylight.yangtools</groupId>
251             <artifactId>yang-test-util</artifactId>
252         </dependency>
253         <dependency>
254             <groupId>${project.groupId}</groupId>
255             <artifactId>config-loader-impl</artifactId>
256             <scope>test</scope>
257         </dependency>
258         <dependency>
259             <groupId>${project.groupId}</groupId>
260             <artifactId>config-loader-impl</artifactId>
261             <type>test-jar</type>
262             <scope>test</scope>
263         </dependency>
264         <dependency>
265             <groupId>${project.groupId}</groupId>
266             <artifactId>bgp-bmp-config-example</artifactId>
267             <scope>test</scope>
268         </dependency>
269     </dependencies>
270
271     <build>
272         <plugins>
273             <plugin>
274                 <groupId>org.apache.maven.plugins</groupId>
275                 <artifactId>maven-remote-resources-plugin</artifactId>
276                 <configuration>
277                     <attachToMain>false</attachToMain>
278                     <resourceBundles>
279                         <resourceBundle>${project.groupId}:bgp-bmp-config-example:${project.version}</resourceBundle>
280                     </resourceBundles>
281                 </configuration>
282                 <executions>
283                     <execution>
284                         <phase>process-test-sources</phase>
285                         <goals>
286                             <goal>process</goal>
287                         </goals>
288                     </execution>
289                 </executions>
290             </plugin>
291             <plugin>
292                 <groupId>org.apache.felix</groupId>
293                 <artifactId>maven-bundle-plugin</artifactId>
294                 <extensions>true</extensions>
295                 <configuration>
296                     <instructions>
297                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
298                         <Export-Package>
299                             org.opendaylight.protocol.bmp.impl.*,
300                             ;-split-package:=error
301                         </Export-Package>
302                     </instructions>
303                 </configuration>
304             </plugin>
305
306             <!-- Disable offline link detection which breaks the build here -->
307             <plugin>
308                 <artifactId>maven-javadoc-plugin</artifactId>
309                 <configuration>
310                     <detectOfflineLinks>false</detectOfflineLinks>
311                 </configuration>
312             </plugin>
313         </plugins>
314     </build>
315
316     <scm>
317         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
318         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
319         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
320         <tag>HEAD</tag>
321     </scm>
322 </project>