Migrate to MD-SAL APIs
[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.12.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>${project.groupId}</groupId>
35             <artifactId>bgp-bmp-spi</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>org.slf4j</groupId>
39             <artifactId>slf4j-api</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.slf4j</groupId>
43             <artifactId>slf4j-simple</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>${project.groupId}</groupId>
47             <artifactId>util</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>${project.groupId}</groupId>
51             <artifactId>bgp-parser-api</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>${project.groupId}</groupId>
55             <artifactId>bgp-parser-spi</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.mdsal</groupId>
75             <artifactId>mdsal-binding-spec-util</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>org.opendaylight.mdsal</groupId>
79             <artifactId>mdsal-common-api</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>org.opendaylight.yangtools</groupId>
83             <artifactId>concepts</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>org.opendaylight.yangtools</groupId>
87             <artifactId>yang-common</artifactId>
88         </dependency>
89         <dependency>
90             <groupId>org.opendaylight.yangtools</groupId>
91             <artifactId>yang-data-api</artifactId>
92         </dependency>
93         <dependency>
94             <groupId>org.opendaylight.yangtools</groupId>
95             <artifactId>yang-data-impl</artifactId>
96         </dependency>
97         <dependency>
98             <groupId>org.opendaylight.mdsal</groupId>
99             <artifactId>mdsal-common-api</artifactId>
100         </dependency>
101         <dependency>
102             <groupId>org.opendaylight.mdsal</groupId>
103             <artifactId>mdsal-binding-api</artifactId>
104         </dependency>
105         <dependency>
106             <groupId>org.opendaylight.mdsal</groupId>
107             <artifactId>mdsal-dom-api</artifactId>
108         </dependency>
109         <dependency>
110             <groupId>org.opendaylight.mdsal</groupId>
111             <artifactId>mdsal-binding-dom-codec</artifactId>
112         </dependency>
113         <dependency>
114             <groupId>org.opendaylight.mdsal</groupId>
115             <artifactId>mdsal-singleton-common-api</artifactId>
116         </dependency>
117         <dependency>
118             <groupId>io.netty</groupId>
119             <artifactId>netty-buffer</artifactId>
120         </dependency>
121         <dependency>
122             <groupId>io.netty</groupId>
123             <artifactId>netty-codec</artifactId>
124         </dependency>
125         <dependency>
126             <groupId>io.netty</groupId>
127             <artifactId>netty-common</artifactId>
128         </dependency>
129         <dependency>
130             <groupId>io.netty</groupId>
131             <artifactId>netty-transport</artifactId>
132         </dependency>
133         <dependency>
134             <groupId>io.netty</groupId>
135             <artifactId>netty-transport-native-epoll</artifactId>
136             <classifier>linux-x86_64</classifier>
137         </dependency>
138         <dependency>
139             <groupId>com.google.guava</groupId>
140             <artifactId>guava</artifactId>
141         </dependency>
142         <dependency>
143             <groupId>org.osgi</groupId>
144             <artifactId>org.osgi.core</artifactId>
145         </dependency>
146         <dependency>
147             <groupId>${project.groupId}</groupId>
148             <artifactId>bgp-parser-impl</artifactId>
149         </dependency>
150         <dependency>
151             <groupId>${project.groupId}</groupId>
152             <artifactId>bgp-concepts</artifactId>
153         </dependency>
154         <dependency>
155             <groupId>${project.groupId}</groupId>
156             <artifactId>concepts</artifactId>
157         </dependency>
158         <dependency>
159             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
160             <artifactId>rfc6991-ietf-yang-types</artifactId>
161         </dependency>
162         <dependency>
163             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
164             <artifactId>rfc6991-ietf-inet-types</artifactId>
165         </dependency>
166         <dependency>
167             <groupId>org.opendaylight.yangtools</groupId>
168             <artifactId>yang-model-api</artifactId>
169         </dependency>
170         <dependency>
171             <groupId>org.checkerframework</groupId>
172             <artifactId>checker-qual</artifactId>
173         </dependency>
174         <!-- test dependencies -->
175         <dependency>
176             <groupId>org.mockito</groupId>
177             <artifactId>mockito-core</artifactId>
178         </dependency>
179         <dependency>
180             <groupId>org.opendaylight.yangtools</groupId>
181             <artifactId>mockito-configuration</artifactId>
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.mdsal</groupId>
190             <artifactId>mdsal-binding-dom-adapter</artifactId>
191             <scope>test</scope>
192             <type>test-jar</type>
193         </dependency>
194         <dependency>
195             <groupId>${project.groupId}</groupId>
196             <artifactId>bgp-rib-impl</artifactId>
197             <scope>test</scope>
198         </dependency>
199         <dependency>
200             <groupId>${project.groupId}</groupId>
201             <artifactId>testtool-util</artifactId>
202             <scope>test</scope>
203         </dependency>
204         <dependency>
205             <groupId>${project.groupId}</groupId>
206             <artifactId>bgp-bmp-parser-impl</artifactId>
207             <version>${project.version}</version>
208             <type>test-jar</type>
209             <scope>test</scope>
210         </dependency>
211         <dependency>
212             <groupId>org.opendaylight.yangtools</groupId>
213             <artifactId>yang-test-util</artifactId>
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>${project.groupId}</groupId>
228             <artifactId>bgp-bmp-config-example</artifactId>
229             <scope>test</scope>
230         </dependency>
231     </dependencies>
232
233     <build>
234         <plugins>
235             <plugin>
236                 <groupId>org.apache.maven.plugins</groupId>
237                 <artifactId>maven-remote-resources-plugin</artifactId>
238                 <configuration>
239                     <attachToMain>false</attachToMain>
240                     <resourceBundles>
241                         <resourceBundle>${project.groupId}:bgp-bmp-config-example:${project.version}</resourceBundle>
242                     </resourceBundles>
243                 </configuration>
244                 <executions>
245                     <execution>
246                         <phase>process-test-sources</phase>
247                         <goals>
248                             <goal>process</goal>
249                         </goals>
250                     </execution>
251                 </executions>
252             </plugin>
253             <plugin>
254                 <groupId>org.apache.felix</groupId>
255                 <artifactId>maven-bundle-plugin</artifactId>
256                 <extensions>true</extensions>
257                 <configuration>
258                     <instructions>
259                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
260                         <Export-Package>
261                             org.opendaylight.protocol.bmp.impl.*,
262                             ;-split-package:=error
263                         </Export-Package>
264                     </instructions>
265                 </configuration>
266             </plugin>
267
268             <!-- Disable offline link detection which breaks the build here -->
269             <plugin>
270                 <artifactId>maven-javadoc-plugin</artifactId>
271                 <configuration>
272                     <detectOfflineLinks>false</detectOfflineLinks>
273                 </configuration>
274             </plugin>
275         </plugins>
276     </build>
277
278     <scm>
279         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
280         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
281         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
282         <tag>HEAD</tag>
283     </scm>
284 </project>