BUG-6857: Protocol config loader tests
[bgpcep.git] / bgp / topology-provider / 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     <parent>
15         <groupId>org.opendaylight.bgpcep</groupId>
16         <artifactId>config-parent</artifactId>
17         <version>0.7.0-SNAPSHOT</version>
18         <relativePath>../../config-parent</relativePath>
19     </parent>
20
21     <artifactId>bgp-topology-provider</artifactId>
22     <packaging>bundle</packaging>
23     <description>BGP Topology Provider</description>
24     <name>${project.artifactId}</name>
25
26     <dependencies>
27         <dependency>
28             <groupId>${project.groupId}</groupId>
29             <artifactId>concepts</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>${project.groupId}</groupId>
33             <artifactId>rsvp-api</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>${project.groupId}</groupId>
37             <artifactId>bgp-concepts</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>${project.groupId}</groupId>
41             <artifactId>bgp-parser-api</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>${project.groupId}</groupId>
45             <artifactId>bgp-parser-spi</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>${project.groupId}</groupId>
49             <artifactId>bgp-rib-api</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>${project.groupId}</groupId>
53             <artifactId>bgp-rib-spi</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>${project.groupId}</groupId>
57             <artifactId>bgp-inet</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>${project.groupId}</groupId>
61             <artifactId>bgp-linkstate</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>${project.groupId}</groupId>
65             <artifactId>topology-api</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>org.opendaylight.yangtools</groupId>
69             <artifactId>concepts</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>org.opendaylight.mdsal</groupId>
73             <artifactId>yang-binding</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>org.opendaylight.yangtools</groupId>
77             <artifactId>yang-common</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>org.opendaylight.controller</groupId>
81             <artifactId>sal-binding-api</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>org.opendaylight.controller</groupId>
85             <artifactId>sal-common-api</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>org.slf4j</groupId>
89             <artifactId>slf4j-api</artifactId>
90         </dependency>
91         <dependency>
92             <groupId>com.google.guava</groupId>
93             <artifactId>guava</artifactId>
94         </dependency>
95         <dependency>
96             <groupId>${project.groupId}</groupId>
97             <artifactId>bgp-config-loader-spi</artifactId>
98         </dependency>
99         <dependency>
100             <groupId>org.opendaylight.mdsal.model</groupId>
101             <artifactId>ietf-ted</artifactId>
102         </dependency>
103         <dependency>
104             <groupId>org.opendaylight.mdsal.model</groupId>
105             <artifactId>ietf-topology</artifactId>
106         </dependency>
107         <dependency>
108             <groupId>org.opendaylight.mdsal.model</groupId>
109             <artifactId>ietf-topology-isis</artifactId>
110         </dependency>
111         <dependency>
112             <groupId>org.opendaylight.mdsal.model</groupId>
113             <artifactId>ietf-topology-ospf</artifactId>
114         </dependency>
115         <dependency>
116             <groupId>org.opendaylight.mdsal.model</groupId>
117             <artifactId>ietf-topology-l3-unicast-igp</artifactId>
118         </dependency>
119         <dependency>
120             <groupId>org.opendaylight.mdsal.model</groupId>
121             <artifactId>ietf-inet-types-2013-07-15</artifactId>
122         </dependency>
123
124         <dependency>
125             <groupId>org.opendaylight.controller</groupId>
126             <artifactId>config-api</artifactId>
127         </dependency>
128         <dependency>
129             <groupId>org.opendaylight.controller</groupId>
130             <artifactId>sal-binding-config</artifactId>
131         </dependency>
132
133         <dependency>
134             <groupId>io.netty</groupId>
135             <artifactId>netty-buffer</artifactId>
136         </dependency>
137         <dependency>
138             <groupId>io.netty</groupId>
139             <artifactId>netty-common</artifactId>
140         </dependency>
141         <dependency>
142             <groupId>org.osgi</groupId>
143             <artifactId>org.osgi.core</artifactId>
144             <scope>provided</scope>
145         </dependency>
146         <dependency>
147             <groupId>com.google.code.findbugs</groupId>
148             <artifactId>jsr305</artifactId>
149         </dependency>
150         <dependency>
151             <groupId>org.apache.aries.blueprint</groupId>
152             <artifactId>org.apache.aries.blueprint.core</artifactId>
153         </dependency>
154
155         <!-- Test dependencies -->
156         <dependency>
157             <groupId>${project.groupId}</groupId>
158             <artifactId>bgp-config-loader-impl</artifactId>
159             <type>test-jar</type>
160             <scope>test</scope>
161         </dependency>
162         <dependency>
163             <groupId>org.opendaylight.controller</groupId>
164             <artifactId>config-manager</artifactId>
165             <type>test-jar</type>
166         </dependency>
167         <dependency>
168             <groupId>org.opendaylight.controller</groupId>
169             <artifactId>config-manager</artifactId>
170             <scope>test</scope>
171         </dependency>
172         <dependency>
173             <groupId>org.opendaylight.controller</groupId>
174             <artifactId>config-util</artifactId>
175         </dependency>
176
177         <dependency>
178             <groupId>${project.groupId}</groupId>
179             <artifactId>bgp-rib-impl</artifactId>
180             <type>test-jar</type>
181         </dependency>
182         <dependency>
183             <groupId>${project.groupId}</groupId>
184             <artifactId>bgp-rib-impl</artifactId>
185             <scope>test</scope>
186         </dependency>
187         <dependency>
188             <groupId>org.opendaylight.controller</groupId>
189             <artifactId>sal-binding-broker-impl</artifactId>
190             <scope>test</scope>
191             <type>test-jar</type>
192         </dependency>
193         <dependency>
194             <groupId>org.opendaylight.controller</groupId>
195             <artifactId>sal-dom-broker-config</artifactId>
196             <scope>test</scope>
197         </dependency>
198         <dependency>
199             <groupId>${project.groupId}</groupId>
200             <artifactId>bgp-controller-config</artifactId>
201             <scope>test</scope>
202         </dependency>
203         <!-- junit/mockito default -->
204         <dependency>
205             <groupId>org.mockito</groupId>
206             <artifactId>mockito-core</artifactId>
207             <scope>test</scope>
208         </dependency>
209         <dependency>
210             <groupId>junit</groupId>
211             <artifactId>junit</artifactId>
212         </dependency>
213         <dependency>
214             <groupId>org.opendaylight.yangtools</groupId>
215             <artifactId>mockito-configuration</artifactId>
216         </dependency>
217         <!-- netty -->
218         <dependency>
219             <groupId>org.opendaylight.controller</groupId>
220             <artifactId>netty-event-executor-config</artifactId>
221             <scope>test</scope>
222         </dependency>
223         <dependency>
224             <groupId>org.opendaylight.controller</groupId>
225             <artifactId>netty-threadgroup-config</artifactId>
226             <scope>test</scope>
227         </dependency>
228     </dependencies>
229
230     <scm>
231         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
232         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
233         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
234         <tag>HEAD</tag>
235     </scm>
236
237     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
238     <distributionManagement>
239         <site>
240             <id>opendaylight-site</id>
241             <url>${nexus.site.url}/${project.artifactId}/</url>
242         </site>
243     </distributionManagement>
244 </project>