cd6b0f1a3afff366bad8a6fe4b0a7bf460ef0db0
[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>${project.groupId}</groupId>
71             <artifactId>testtool-util</artifactId>
72             <scope>test</scope>
73         </dependency>
74         <dependency>
75             <groupId>com.google.code.findbugs</groupId>
76             <artifactId>jsr305</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>com.google.guava</groupId>
80             <artifactId>guava</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>io.netty</groupId>
84             <artifactId>netty-codec</artifactId>
85         </dependency>
86         <dependency>
87             <groupId>io.netty</groupId>
88             <artifactId>netty-buffer</artifactId>
89         </dependency>
90         <dependency>
91             <groupId>io.netty</groupId>
92             <artifactId>netty-common</artifactId>
93         </dependency>
94         <dependency>
95             <groupId>io.netty</groupId>
96             <artifactId>netty-transport</artifactId>
97         </dependency>
98         <dependency>
99             <groupId>io.netty</groupId>
100             <artifactId>netty-transport-native-epoll</artifactId>
101             <classifier>${os.detected.classifier}</classifier>
102         </dependency>
103         <dependency>
104             <groupId>io.netty</groupId>
105             <artifactId>netty-handler</artifactId>
106         </dependency>
107         <dependency>
108             <groupId>org.slf4j</groupId>
109             <artifactId>slf4j-api</artifactId>
110         </dependency>
111         <dependency>
112             <groupId>org.opendaylight.controller</groupId>
113             <artifactId>sal-binding-api</artifactId>
114         </dependency>
115         <dependency>
116             <groupId>org.opendaylight.mdsal</groupId>
117             <artifactId>yang-binding</artifactId>
118         </dependency>
119         <dependency>
120             <groupId>org.opendaylight.yangtools</groupId>
121             <artifactId>concepts</artifactId>
122         </dependency>
123         <dependency>
124             <groupId>org.opendaylight.yangtools</groupId>
125             <artifactId>yang-common</artifactId>
126         </dependency>
127         <dependency>
128             <groupId>org.opendaylight.yangtools</groupId>
129             <artifactId>yang-data-api</artifactId>
130         </dependency>
131         <dependency>
132             <groupId>org.opendaylight.yangtools</groupId>
133             <artifactId>yang-model-api</artifactId>
134         </dependency>
135         <dependency>
136             <groupId>org.opendaylight.yangtools</groupId>
137             <artifactId>yang-data-impl</artifactId>
138         </dependency>
139         <dependency>
140             <groupId>org.opendaylight.mdsal.model</groupId>
141             <artifactId>ietf-inet-types-2013-07-15</artifactId>
142         </dependency>
143         <dependency>
144             <groupId>${project.groupId}</groupId>
145             <artifactId>bgp-parser-impl</artifactId>
146         </dependency>
147         <dependency>
148             <groupId>org.opendaylight.controller</groupId>
149             <artifactId>config-api</artifactId>
150         </dependency>
151         <dependency>
152             <groupId>org.opendaylight.controller</groupId>
153             <artifactId>sal-common-api</artifactId>
154         </dependency>
155         <dependency>
156             <groupId>org.opendaylight.controller</groupId>
157             <artifactId>sal-binding-config</artifactId>
158         </dependency>
159         <dependency>
160             <groupId>org.opendaylight.mdsal</groupId>
161             <artifactId>mdsal-binding-generator-impl</artifactId>
162         </dependency>
163         <dependency>
164             <groupId>org.opendaylight.controller</groupId>
165             <artifactId>netty-config-api</artifactId>
166         </dependency>
167         <dependency>
168             <groupId>org.opendaylight.controller</groupId>
169             <artifactId>netty-timer-config</artifactId>
170         </dependency>
171         <dependency>
172             <groupId>${project.groupId}</groupId>
173             <artifactId>bgp-openconfig-spi</artifactId>
174         </dependency>
175         <dependency>
176             <groupId>${project.groupId}</groupId>
177             <artifactId>bgp-openconfig-api</artifactId>
178         </dependency>
179         <dependency>
180             <groupId>${project.groupId}</groupId>
181             <artifactId>bgp-path-selection-mode</artifactId>
182         </dependency>
183         <dependency>
184             <groupId>${project.groupId}</groupId>
185             <artifactId>bgp-inet</artifactId>
186         </dependency>
187
188         <dependency>
189             <groupId>org.osgi</groupId>
190             <artifactId>org.osgi.core</artifactId>
191             <scope>provided</scope>
192         </dependency>
193         <dependency>
194             <groupId>org.osgi</groupId>
195             <artifactId>org.osgi.compendium</artifactId>
196         </dependency>
197         <!-- Testing dependencies -->
198         <dependency>
199             <groupId>${project.groupId}</groupId>
200             <artifactId>bgp-path-selection-mode</artifactId>
201             <type>test-jar</type>
202             <scope>test</scope>
203         </dependency>
204         <dependency>
205             <groupId>org.mockito</groupId>
206             <artifactId>mockito-core</artifactId>
207         </dependency>
208         <dependency>
209             <groupId>org.opendaylight.yangtools</groupId>
210             <artifactId>mockito-configuration</artifactId>
211         </dependency>
212         <dependency>
213             <groupId>${project.groupId}</groupId>
214             <artifactId>bgp-linkstate</artifactId>
215             <scope>test</scope>
216         </dependency>
217         <dependency>
218             <groupId>${project.groupId}</groupId>
219             <artifactId>bgp-rib-mock</artifactId>
220             <scope>test</scope>
221         </dependency>
222         <dependency>
223             <groupId>${project.groupId}</groupId>
224             <artifactId>bgp-util</artifactId>
225             <scope>test</scope>
226         </dependency>
227         <dependency>
228             <groupId>org.opendaylight.yangtools</groupId>
229             <artifactId>yang-parser-api</artifactId>
230             <scope>test</scope>
231         </dependency>
232         <dependency>
233             <groupId>org.opendaylight.yangtools</groupId>
234             <artifactId>yang-parser-impl</artifactId>
235             <scope>test</scope>
236         </dependency>
237         <dependency>
238             <groupId>org.slf4j</groupId>
239             <artifactId>slf4j-simple</artifactId>
240             <scope>test</scope>
241         </dependency>
242         <dependency>
243             <groupId>junit</groupId>
244             <artifactId>junit</artifactId>
245         </dependency>
246         <dependency>
247             <groupId>org.opendaylight.controller</groupId>
248             <artifactId>config-manager</artifactId>
249             <type>test-jar</type>
250             <scope>test</scope>
251         </dependency>
252         <dependency>
253             <groupId>org.opendaylight.controller</groupId>
254             <artifactId>config-manager</artifactId>
255             <scope>test</scope>
256         </dependency>
257         <dependency>
258             <groupId>org.opendaylight.controller</groupId>
259             <artifactId>config-util</artifactId>
260             <scope>test</scope>
261         </dependency>
262         <dependency>
263             <groupId>org.opendaylight.controller</groupId>
264             <artifactId>netty-event-executor-config</artifactId>
265             <scope>test</scope>
266         </dependency>
267         <dependency>
268             <groupId>org.opendaylight.controller</groupId>
269             <artifactId>netty-threadgroup-config</artifactId>
270             <scope>test</scope>
271         </dependency>
272         <dependency>
273             <groupId>org.opendaylight.controller</groupId>
274             <artifactId>sal-binding-broker-impl</artifactId>
275             <scope>test</scope>
276         </dependency>
277         <dependency>
278             <groupId>org.opendaylight.controller</groupId>
279             <artifactId>sal-broker-impl</artifactId>
280             <scope>test</scope>
281         </dependency>
282         <dependency>
283             <groupId>org.opendaylight.controller</groupId>
284             <artifactId>sal-binding-broker-impl</artifactId>
285             <scope>test</scope>
286             <type>test-jar</type>
287         </dependency>
288         <dependency>
289             <groupId>org.opendaylight.controller</groupId>
290             <artifactId>sal-dom-broker-config</artifactId>
291             <scope>test</scope>
292         </dependency>
293         <dependency>
294             <groupId>ch.qos.logback</groupId>
295             <artifactId>logback-classic</artifactId>
296         </dependency>
297
298
299     </dependencies>
300
301     <build>
302         <plugins>
303             <plugin>
304                 <groupId>org.apache.felix</groupId>
305                 <artifactId>maven-bundle-plugin</artifactId>
306                 <extensions>true</extensions>
307                 <configuration>
308                     <instructions>
309                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
310                         <Export-Package>
311                             org.opendaylight.protocol.bgp.rib.impl.*,
312                             org.opendaylight.controller.config.yang.bgp.rib.impl,
313                             org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.bgp.*
314                         </Export-Package>
315                     </instructions>
316                 </configuration>
317             </plugin>
318             <plugin>
319                 <groupId>org.apache.maven.plugins</groupId>
320                 <artifactId>maven-jar-plugin</artifactId>
321                 <executions>
322                     <execution>
323                         <phase>package</phase>
324                         <goals>
325                             <goal>test-jar</goal>
326                         </goals>
327                     </execution>
328                 </executions>
329             </plugin>
330             <plugin>
331                 <groupId>org.opendaylight.yangtools</groupId>
332                 <artifactId>yang-maven-plugin</artifactId>
333             </plugin>
334         </plugins>
335     </build>
336
337   <!--
338       Maven Site Configuration
339
340       The following configuration is necessary for maven-site-plugin to
341       correctly identify the correct deployment path for OpenDaylight Maven
342       sites.
343   -->
344   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
345
346   <distributionManagement>
347     <site>
348       <id>opendaylight-site</id>
349       <url>${nexus.site.url}/${project.artifactId}/</url>
350     </site>
351   </distributionManagement>
352 </project>