Use GuicedEE javax.inject
[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.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>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>org.osgi</groupId>
173             <artifactId>osgi.cmpn</artifactId>
174         </dependency>
175
176         <!-- OSGi, FIXME: remove this -->
177         <dependency>
178             <groupId>org.osgi</groupId>
179             <artifactId>osgi.core</artifactId>
180         </dependency>
181
182         <!-- Testing dependencies -->
183         <dependency>
184             <groupId>${project.groupId}</groupId>
185             <artifactId>bgp-openconfig-rp-impl</artifactId>
186             <scope>test</scope>
187         </dependency>
188         <dependency>
189             <groupId>${project.groupId}</groupId>
190             <artifactId>bgp-openconfig-rp-impl</artifactId>
191             <type>test-jar</type>
192             <scope>test</scope>
193         </dependency>
194         <dependency>
195             <groupId>${project.groupId}</groupId>
196             <artifactId>bgp-rib-spi</artifactId>
197             <type>test-jar</type>
198             <scope>test</scope>
199         </dependency>
200         <dependency>
201             <groupId>${project.groupId}</groupId>
202             <artifactId>testtool-util</artifactId>
203             <scope>test</scope>
204         </dependency>
205         <dependency>
206             <groupId>${project.groupId}</groupId>
207             <artifactId>bgp-path-selection-mode</artifactId>
208             <type>test-jar</type>
209             <scope>test</scope>
210         </dependency>
211         <dependency>
212             <groupId>${project.groupId}</groupId>
213             <artifactId>config-loader-impl</artifactId>
214             <scope>test</scope>
215         </dependency>
216         <dependency>
217             <groupId>${project.groupId}</groupId>
218             <artifactId>config-loader-impl</artifactId>
219             <type>test-jar</type>
220             <scope>test</scope>
221         </dependency>
222         <dependency>
223             <groupId>org.opendaylight.yangtools</groupId>
224             <artifactId>mockito-configuration</artifactId>
225         </dependency>
226         <dependency>
227             <groupId>${project.groupId}</groupId>
228             <artifactId>bgp-linkstate</artifactId>
229             <scope>test</scope>
230         </dependency>
231         <dependency>
232             <groupId>${project.groupId}</groupId>
233             <artifactId>bgp-rib-mock</artifactId>
234             <scope>test</scope>
235         </dependency>
236         <dependency>
237             <groupId>${project.groupId}</groupId>
238             <artifactId>bgp-util</artifactId>
239             <scope>test</scope>
240         </dependency>
241         <dependency>
242             <groupId>org.opendaylight.yangtools</groupId>
243             <artifactId>yang-parser-api</artifactId>
244             <scope>test</scope>
245         </dependency>
246         <dependency>
247             <groupId>org.slf4j</groupId>
248             <artifactId>slf4j-simple</artifactId>
249             <scope>test</scope>
250         </dependency>
251         <dependency>
252             <groupId>${project.groupId}</groupId>
253             <artifactId>bgp-config-example</artifactId>
254             <scope>test</scope>
255         </dependency>
256         <dependency>
257             <groupId>org.opendaylight.mdsal</groupId>
258             <artifactId>mdsal-dom-broker</artifactId>
259             <scope>test</scope>
260         </dependency>
261         <dependency>
262             <groupId>org.opendaylight.mdsal</groupId>
263             <artifactId>mdsal-binding-test-utils</artifactId>
264             <scope>test</scope>
265         </dependency>
266         <dependency>
267             <groupId>org.opendaylight.mdsal</groupId>
268             <artifactId>mdsal-binding-dom-adapter</artifactId>
269             <scope>test</scope>
270         </dependency>
271         <dependency>
272             <groupId>org.opendaylight.mdsal</groupId>
273             <artifactId>mdsal-binding-dom-adapter</artifactId>
274             <scope>test</scope>
275             <type>test-jar</type>
276         </dependency>
277         <dependency>
278             <groupId>ch.qos.logback</groupId>
279             <artifactId>logback-classic</artifactId>
280             <scope>test</scope>
281         </dependency>
282         <dependency>
283             <groupId>org.opendaylight.yangtools</groupId>
284             <artifactId>yang-test-util</artifactId>
285             <scope>test</scope>
286         </dependency>
287         <dependency>
288             <groupId>${project.groupId}</groupId>
289             <artifactId>routing-policy-config-loader</artifactId>
290             <scope>test</scope>
291         </dependency>
292         <dependency>
293             <groupId>${project.groupId}</groupId>
294             <artifactId>routing-policy-config-loader</artifactId>
295             <scope>test</scope>
296             <type>test-jar</type>
297         </dependency>
298         <dependency>
299             <groupId>${project.groupId}</groupId>
300             <artifactId>bgp-openconfig-rp-statement</artifactId>
301             <scope>test</scope>
302         </dependency>
303         <dependency>
304             <groupId>${project.groupId}</groupId>
305             <artifactId>bgp-openconfig-rp-statement</artifactId>
306             <type>test-jar</type>
307             <scope>test</scope>
308         </dependency>
309         <dependency>
310             <groupId>${project.groupId}</groupId>
311             <artifactId>bgp-openconfig-rp-spi</artifactId>
312             <type>test-jar</type>
313             <scope>test</scope>
314         </dependency>
315     </dependencies>
316
317     <build>
318         <plugins>
319             <plugin>
320                 <groupId>org.apache.felix</groupId>
321                 <artifactId>maven-bundle-plugin</artifactId>
322                 <extensions>true</extensions>
323                 <configuration>
324                     <instructions>
325                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
326                         <Export-Package>
327                             org.opendaylight.protocol.bgp.rib.impl.*
328                             ;-split-package:=error
329                         </Export-Package>
330                     </instructions>
331                 </configuration>
332             </plugin>
333             <plugin>
334                 <artifactId>maven-jar-plugin</artifactId>
335                 <executions>
336                     <execution>
337                         <goals>
338                             <goal>test-jar</goal>
339                         </goals>
340                     </execution>
341                 </executions>
342             </plugin>
343             <plugin>
344                 <artifactId>maven-source-plugin</artifactId>
345                 <executions>
346                     <execution>
347                         <goals>
348                             <goal>test-jar-no-fork</goal>
349                         </goals>
350                     </execution>
351                 </executions>
352             </plugin>
353             <plugin>
354                 <artifactId>maven-remote-resources-plugin</artifactId>
355                 <configuration>
356                     <attachToMain>false</attachToMain>
357                     <resourceBundles>
358                         <resourceBundle>${project.groupId}:bgp-config-example:${project.version}</resourceBundle>
359                     </resourceBundles>
360                 </configuration>
361                 <executions>
362                     <execution>
363                         <phase>process-test-sources</phase>
364                         <goals>
365                             <goal>process</goal>
366                         </goals>
367                     </execution>
368                 </executions>
369             </plugin>
370             <!-- Disable offline link detection which breaks the build here -->
371             <plugin>
372                 <artifactId>maven-javadoc-plugin</artifactId>
373                 <configuration>
374                     <detectOfflineLinks>false</detectOfflineLinks>
375                 </configuration>
376             </plugin>
377         </plugins>
378     </build>
379
380     <scm>
381         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
382         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
383         <url>https://wiki.opendaylight.org/display/ODL/BGPCEP</url>
384         <tag>HEAD</tag>
385     </scm>
386 </project>