Bump versions by 0.1.0 for next dev cycle
[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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12
13     <modelVersion>4.0.0</modelVersion>
14     <scm>
15         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
16         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
17         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
18         <tag>HEAD</tag>
19     </scm>
20     <parent>
21         <groupId>org.opendaylight.bgpcep</groupId>
22         <artifactId>bgp-parent</artifactId>
23         <version>0.7.0-SNAPSHOT</version>
24     </parent>
25
26     <artifactId>bgp-rib-impl</artifactId>
27     <description>BGP RIB implementation</description>
28     <packaging>bundle</packaging>
29     <name>${project.artifactId}</name>
30     <prerequisites>
31         <maven>3.0.4</maven>
32     </prerequisites>
33
34     <dependencies>
35         <dependency>
36             <groupId>${project.groupId}</groupId>
37             <artifactId>concepts</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>${project.groupId}</groupId>
41             <artifactId>util</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>${project.groupId}</groupId>
45             <artifactId>bgp-concepts</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>${project.groupId}</groupId>
49             <artifactId>bgp-parser-api</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>${project.groupId}</groupId>
53             <artifactId>bgp-parser-spi</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>${project.groupId}</groupId>
57             <artifactId>bgp-rib-api</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>${project.groupId}</groupId>
61             <artifactId>bgp-rib-spi</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>${project.groupId}</groupId>
65             <artifactId>bgp-rib-spi</artifactId>
66             <type>test-jar</type>
67             <scope>test</scope>
68         </dependency>
69         <dependency>
70             <groupId>com.google.code.findbugs</groupId>
71             <artifactId>jsr305</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>com.google.guava</groupId>
75             <artifactId>guava</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-buffer</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>io.netty</groupId>
87             <artifactId>netty-common</artifactId>
88         </dependency>
89         <dependency>
90             <groupId>io.netty</groupId>
91             <artifactId>netty-transport</artifactId>
92         </dependency>
93         <dependency>
94             <groupId>io.netty</groupId>
95             <artifactId>netty-transport-native-epoll</artifactId>
96             <classifier>${os.detected.classifier}</classifier>
97         </dependency>
98         <dependency>
99             <groupId>io.netty</groupId>
100             <artifactId>netty-handler</artifactId>
101         </dependency>
102         <dependency>
103             <groupId>org.slf4j</groupId>
104             <artifactId>slf4j-api</artifactId>
105         </dependency>
106         <dependency>
107             <groupId>org.opendaylight.controller</groupId>
108             <artifactId>sal-binding-api</artifactId>
109         </dependency>
110         <dependency>
111             <groupId>org.opendaylight.mdsal</groupId>
112             <artifactId>yang-binding</artifactId>
113         </dependency>
114         <dependency>
115             <groupId>org.opendaylight.yangtools</groupId>
116             <artifactId>concepts</artifactId>
117         </dependency>
118         <dependency>
119             <groupId>org.opendaylight.yangtools</groupId>
120             <artifactId>yang-common</artifactId>
121         </dependency>
122         <dependency>
123             <groupId>org.opendaylight.yangtools</groupId>
124             <artifactId>yang-data-api</artifactId>
125         </dependency>
126         <dependency>
127             <groupId>org.opendaylight.yangtools</groupId>
128             <artifactId>yang-model-api</artifactId>
129         </dependency>
130         <dependency>
131             <groupId>org.opendaylight.yangtools</groupId>
132             <artifactId>yang-data-impl</artifactId>
133         </dependency>
134         <dependency>
135             <groupId>org.opendaylight.mdsal.model</groupId>
136             <artifactId>ietf-inet-types-2013-07-15</artifactId>
137         </dependency>
138         <dependency>
139             <groupId>${project.groupId}</groupId>
140             <artifactId>bgp-parser-impl</artifactId>
141         </dependency>
142         <dependency>
143             <groupId>org.opendaylight.controller</groupId>
144             <artifactId>config-api</artifactId>
145         </dependency>
146         <dependency>
147             <groupId>org.opendaylight.controller</groupId>
148             <artifactId>sal-common-api</artifactId>
149         </dependency>
150         <dependency>
151             <groupId>org.opendaylight.controller</groupId>
152             <artifactId>sal-binding-config</artifactId>
153         </dependency>
154         <dependency>
155             <groupId>org.opendaylight.mdsal</groupId>
156             <artifactId>mdsal-binding-generator-impl</artifactId>
157         </dependency>
158         <dependency>
159             <groupId>org.opendaylight.controller</groupId>
160             <artifactId>netty-config-api</artifactId>
161         </dependency>
162         <dependency>
163             <groupId>org.opendaylight.controller</groupId>
164             <artifactId>netty-timer-config</artifactId>
165         </dependency>
166         <dependency>
167             <groupId>${project.groupId}</groupId>
168             <artifactId>bgp-openconfig-spi</artifactId>
169         </dependency>
170         <dependency>
171             <groupId>${project.groupId}</groupId>
172             <artifactId>bgp-openconfig-api</artifactId>
173         </dependency>
174         <dependency>
175             <groupId>${project.groupId}</groupId>
176             <artifactId>bgp-path-selection-mode</artifactId>
177         </dependency>
178         <dependency>
179             <groupId>${project.groupId}</groupId>
180             <artifactId>bgp-inet</artifactId>
181         </dependency>
182
183         <dependency>
184             <groupId>org.osgi</groupId>
185             <artifactId>org.osgi.core</artifactId>
186             <scope>provided</scope>
187         </dependency>
188         <dependency>
189             <groupId>org.osgi</groupId>
190             <artifactId>org.osgi.compendium</artifactId>
191         </dependency>
192         <!-- Testing dependencies -->
193         <dependency>
194             <groupId>${project.groupId}</groupId>
195             <artifactId>bgp-path-selection-mode</artifactId>
196             <type>test-jar</type>
197             <scope>test</scope>
198         </dependency>
199         <dependency>
200             <groupId>org.mockito</groupId>
201             <artifactId>mockito-core</artifactId>
202         </dependency>
203         <dependency>
204             <groupId>org.opendaylight.yangtools</groupId>
205             <artifactId>mockito-configuration</artifactId>
206         </dependency>
207         <dependency>
208             <groupId>${project.groupId}</groupId>
209             <artifactId>bgp-linkstate</artifactId>
210             <scope>test</scope>
211         </dependency>
212         <dependency>
213             <groupId>${project.groupId}</groupId>
214             <artifactId>bgp-rib-mock</artifactId>
215             <scope>test</scope>
216         </dependency>
217         <dependency>
218             <groupId>${project.groupId}</groupId>
219             <artifactId>bgp-util</artifactId>
220             <scope>test</scope>
221         </dependency>
222         <dependency>
223             <groupId>org.opendaylight.yangtools</groupId>
224             <artifactId>yang-parser-api</artifactId>
225             <scope>test</scope>
226         </dependency>
227         <dependency>
228             <groupId>org.opendaylight.yangtools</groupId>
229             <artifactId>yang-parser-impl</artifactId>
230             <scope>test</scope>
231         </dependency>
232         <dependency>
233             <groupId>org.slf4j</groupId>
234             <artifactId>slf4j-simple</artifactId>
235             <scope>test</scope>
236         </dependency>
237         <dependency>
238             <groupId>junit</groupId>
239             <artifactId>junit</artifactId>
240         </dependency>
241         <dependency>
242             <groupId>org.opendaylight.controller</groupId>
243             <artifactId>config-manager</artifactId>
244             <type>test-jar</type>
245             <scope>test</scope>
246         </dependency>
247         <dependency>
248             <groupId>org.opendaylight.controller</groupId>
249             <artifactId>config-manager</artifactId>
250             <scope>test</scope>
251         </dependency>
252         <dependency>
253             <groupId>org.opendaylight.controller</groupId>
254             <artifactId>config-util</artifactId>
255             <scope>test</scope>
256         </dependency>
257         <dependency>
258             <groupId>org.opendaylight.controller</groupId>
259             <artifactId>netty-event-executor-config</artifactId>
260             <scope>test</scope>
261         </dependency>
262         <dependency>
263             <groupId>org.opendaylight.controller</groupId>
264             <artifactId>netty-threadgroup-config</artifactId>
265             <scope>test</scope>
266         </dependency>
267         <dependency>
268             <groupId>org.opendaylight.controller</groupId>
269             <artifactId>sal-binding-broker-impl</artifactId>
270             <scope>test</scope>
271         </dependency>
272         <dependency>
273             <groupId>org.opendaylight.controller</groupId>
274             <artifactId>sal-broker-impl</artifactId>
275             <scope>test</scope>
276         </dependency>
277         <dependency>
278             <groupId>org.opendaylight.controller</groupId>
279             <artifactId>sal-binding-broker-impl</artifactId>
280             <scope>test</scope>
281             <type>test-jar</type>
282         </dependency>
283         <dependency>
284             <groupId>org.opendaylight.controller</groupId>
285             <artifactId>sal-dom-broker-config</artifactId>
286             <scope>test</scope>
287         </dependency>
288     </dependencies>
289
290     <build>
291         <plugins>
292             <plugin>
293                 <groupId>org.apache.felix</groupId>
294                 <artifactId>maven-bundle-plugin</artifactId>
295                 <extensions>true</extensions>
296                 <configuration>
297                     <instructions>
298                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
299                         <Export-Package>
300                             org.opendaylight.protocol.bgp.rib.impl.*,
301                             org.opendaylight.controller.config.yang.bgp.rib.impl,
302                             org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.bgp.*
303                         </Export-Package>
304                     </instructions>
305                 </configuration>
306             </plugin>
307             <plugin>
308                 <groupId>org.apache.maven.plugins</groupId>
309                 <artifactId>maven-jar-plugin</artifactId>
310                 <executions>
311                     <execution>
312                         <phase>package</phase>
313                         <goals>
314                             <goal>test-jar</goal>
315                         </goals>
316                     </execution>
317                 </executions>
318             </plugin>
319             <plugin>
320                 <groupId>org.opendaylight.yangtools</groupId>
321                 <artifactId>yang-maven-plugin</artifactId>
322             </plugin>
323         </plugins>
324     </build>
325
326   <!--
327       Maven Site Configuration
328
329       The following configuration is necessary for maven-site-plugin to
330       correctly identify the correct deployment path for OpenDaylight Maven
331       sites.
332   -->
333   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
334
335   <distributionManagement>
336     <site>
337       <id>opendaylight-site</id>
338       <url>${nexus.site.url}/${project.artifactId}/</url>
339     </site>
340   </distributionManagement>
341 </project>