Move IPv4/6 Unicast extension to bgp-inet
[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.6.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
139         <dependency>
140             <groupId>${project.groupId}</groupId>
141             <artifactId>bgp-parser-impl</artifactId>
142         </dependency>
143         <dependency>
144             <groupId>org.opendaylight.controller</groupId>
145             <artifactId>config-api</artifactId>
146         </dependency>
147         <dependency>
148             <groupId>org.opendaylight.controller</groupId>
149             <artifactId>sal-common-api</artifactId>
150         </dependency>
151         <dependency>
152             <groupId>org.opendaylight.controller</groupId>
153             <artifactId>sal-binding-config</artifactId>
154         </dependency>
155         <dependency>
156             <groupId>org.opendaylight.mdsal</groupId>
157             <artifactId>mdsal-binding-generator-impl</artifactId>
158         </dependency>
159         <dependency>
160             <groupId>org.opendaylight.controller</groupId>
161             <artifactId>netty-config-api</artifactId>
162         </dependency>
163         <dependency>
164             <groupId>org.opendaylight.controller</groupId>
165             <artifactId>netty-timer-config</artifactId>
166         </dependency>
167         <dependency>
168             <groupId>${project.groupId}</groupId>
169             <artifactId>bgp-openconfig-spi</artifactId>
170         </dependency>
171         <dependency>
172             <groupId>${project.groupId}</groupId>
173             <artifactId>bgp-path-selection-mode</artifactId>
174         </dependency>
175         <dependency>
176             <groupId>${project.groupId}</groupId>
177             <artifactId>bgp-inet</artifactId>
178         </dependency>
179
180         <dependency>
181             <groupId>org.osgi</groupId>
182             <artifactId>org.osgi.core</artifactId>
183             <scope>provided</scope>
184         </dependency>
185
186         <!-- Testing dependencies -->
187         <dependency>
188             <groupId>${project.groupId}</groupId>
189             <artifactId>bgp-path-selection-mode</artifactId>
190             <type>test-jar</type>
191             <scope>test</scope>
192         </dependency>
193         <dependency>
194             <groupId>org.mockito</groupId>
195             <artifactId>mockito-core</artifactId>
196         </dependency>
197         <dependency>
198             <groupId>org.opendaylight.yangtools</groupId>
199             <artifactId>mockito-configuration</artifactId>
200         </dependency>
201         <dependency>
202             <groupId>${project.groupId}</groupId>
203             <artifactId>bgp-linkstate</artifactId>
204             <scope>test</scope>
205         </dependency>
206         <dependency>
207             <groupId>${project.groupId}</groupId>
208             <artifactId>bgp-rib-mock</artifactId>
209             <scope>test</scope>
210         </dependency>
211         <dependency>
212             <groupId>${project.groupId}</groupId>
213             <artifactId>bgp-util</artifactId>
214             <scope>test</scope>
215         </dependency>
216         <dependency>
217             <groupId>org.opendaylight.yangtools</groupId>
218             <artifactId>yang-parser-api</artifactId>
219             <scope>test</scope>
220         </dependency>
221         <dependency>
222             <groupId>org.opendaylight.yangtools</groupId>
223             <artifactId>yang-parser-impl</artifactId>
224             <scope>test</scope>
225         </dependency>
226         <dependency>
227             <groupId>org.slf4j</groupId>
228             <artifactId>slf4j-simple</artifactId>
229             <scope>test</scope>
230         </dependency>
231         
232         <dependency>
233             <groupId>junit</groupId>
234             <artifactId>junit</artifactId>
235         </dependency>
236
237         <dependency>
238             <groupId>org.opendaylight.controller</groupId>
239             <artifactId>config-manager</artifactId>
240             <type>test-jar</type>
241             <scope>test</scope>
242         </dependency>
243         <dependency>
244             <groupId>org.opendaylight.controller</groupId>
245             <artifactId>config-manager</artifactId>
246             <scope>test</scope>
247         </dependency>
248         <dependency>
249             <groupId>org.opendaylight.controller</groupId>
250             <artifactId>config-util</artifactId>
251             <scope>test</scope>
252         </dependency>
253         <dependency>
254             <groupId>org.opendaylight.controller</groupId>
255             <artifactId>netty-event-executor-config</artifactId>
256             <scope>test</scope>
257         </dependency>
258         <dependency>
259             <groupId>org.opendaylight.controller</groupId>
260             <artifactId>netty-threadgroup-config</artifactId>
261             <scope>test</scope>
262         </dependency>
263         <dependency>
264             <groupId>org.opendaylight.controller</groupId>
265             <artifactId>sal-binding-broker-impl</artifactId>
266             <scope>test</scope>
267         </dependency>
268         <dependency>
269             <groupId>org.opendaylight.controller</groupId>
270             <artifactId>sal-broker-impl</artifactId>
271             <scope>test</scope>
272         </dependency>
273         <dependency>
274             <groupId>org.opendaylight.controller</groupId>
275             <artifactId>sal-binding-broker-impl</artifactId>
276             <scope>test</scope>
277             <type>test-jar</type>
278         </dependency>
279         <dependency>
280             <groupId>org.opendaylight.controller</groupId>
281             <artifactId>sal-dom-broker-config</artifactId>
282             <scope>test</scope>
283         </dependency>
284     </dependencies>
285
286     <build>
287         <plugins>
288             <plugin>
289                 <groupId>org.apache.felix</groupId>
290                 <artifactId>maven-bundle-plugin</artifactId>
291                 <extensions>true</extensions>
292                 <configuration>
293                     <instructions>
294                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
295                         <Export-Package>
296                             org.opendaylight.protocol.bgp.rib.impl.*,
297                             org.opendaylight.controller.config.yang.bgp.rib.impl,
298                             org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.bgp.*
299                         </Export-Package>
300                     </instructions>
301                 </configuration>
302             </plugin>
303             <plugin>
304                 <groupId>org.apache.maven.plugins</groupId>
305                 <artifactId>maven-jar-plugin</artifactId>
306                 <executions>
307                     <execution>
308                         <phase>package</phase>
309                         <goals>
310                             <goal>test-jar</goal>
311                         </goals>
312                     </execution>
313                 </executions>
314             </plugin>
315             <plugin>
316                 <groupId>org.opendaylight.yangtools</groupId>
317                 <artifactId>yang-maven-plugin</artifactId>
318             </plugin>
319         </plugins>
320     </build>
321
322   <!--
323       Maven Site Configuration
324
325       The following configuration is necessary for maven-site-plugin to
326       correctly identify the correct deployment path for OpenDaylight Maven
327       sites.
328   -->
329   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
330
331   <distributionManagement>
332     <site>
333       <id>opendaylight-site</id>
334       <url>${nexus.site.url}/${project.artifactId}/</url>
335     </site>
336   </distributionManagement>
337 </project>