Cleaned up dependencies.
[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     <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.4.0-SNAPSHOT</version>
24     </parent>
25
26     <artifactId>bgp-topology-provider</artifactId>
27     <description>BGP Topology Provider</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>rsvp-api</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-linkstate</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>${project.groupId}</groupId>
69             <artifactId>topology-api</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>org.opendaylight.yangtools</groupId>
73             <artifactId>concepts</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>org.opendaylight.yangtools</groupId>
77             <artifactId>yang-binding</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>org.opendaylight.yangtools</groupId>
81             <artifactId>yang-common</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>org.opendaylight.controller</groupId>
85             <artifactId>sal-binding-api</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>org.opendaylight.controller</groupId>
89             <artifactId>sal-common-api</artifactId>
90         </dependency>
91         <dependency>
92             <groupId>org.slf4j</groupId>
93             <artifactId>slf4j-api</artifactId>
94         </dependency>
95         <dependency>
96             <groupId>com.google.guava</groupId>
97             <artifactId>guava</artifactId>
98         </dependency>
99
100         <dependency>
101             <groupId>org.opendaylight.yangtools.model</groupId>
102             <artifactId>ietf-ted</artifactId>
103         </dependency>
104         <dependency>
105             <groupId>org.opendaylight.yangtools.model</groupId>
106             <artifactId>ietf-topology</artifactId>
107         </dependency>
108         <dependency>
109             <groupId>org.opendaylight.yangtools.model</groupId>
110             <artifactId>ietf-topology-isis</artifactId>
111         </dependency>
112         <dependency>
113             <groupId>org.opendaylight.yangtools.model</groupId>
114             <artifactId>ietf-topology-ospf</artifactId>
115         </dependency>
116         <dependency>
117             <groupId>org.opendaylight.yangtools.model</groupId>
118             <artifactId>ietf-topology-l3-unicast-igp</artifactId>
119         </dependency>
120         <dependency>
121             <groupId>org.opendaylight.yangtools.model</groupId>
122             <artifactId>ietf-inet-types</artifactId>
123         </dependency>
124
125         <dependency>
126             <groupId>org.opendaylight.controller</groupId>
127             <artifactId>config-api</artifactId>
128         </dependency>
129         <dependency>
130             <groupId>org.opendaylight.controller</groupId>
131             <artifactId>sal-binding-config</artifactId>
132         </dependency>
133         <dependency>
134             <groupId>org.opendaylight.controller</groupId>
135             <artifactId>protocol-framework</artifactId>
136         </dependency>
137
138         <dependency>
139             <groupId>io.netty</groupId>
140             <artifactId>netty-buffer</artifactId>
141         </dependency>
142         <dependency>
143             <groupId>io.netty</groupId>
144             <artifactId>netty-common</artifactId>
145         </dependency>
146         <dependency>
147             <groupId>commons-codec</groupId>
148             <artifactId>commons-codec</artifactId>
149             <scope>provided</scope>
150         </dependency>
151         <dependency>
152             <groupId>org.osgi</groupId>
153             <artifactId>org.osgi.core</artifactId>
154             <scope>provided</scope>
155         </dependency>
156         <dependency>
157             <groupId>com.google.code.findbugs</groupId>
158             <artifactId>jsr305</artifactId>
159         </dependency>
160
161         <!-- Test dependencies -->
162         <dependency>
163             <groupId>org.mockito</groupId>
164             <artifactId>mockito-core</artifactId>
165             <scope>test</scope>
166         </dependency>
167         <dependency>
168             <groupId>junit</groupId>
169             <artifactId>junit</artifactId>
170         </dependency>
171         <dependency>
172             <groupId>org.opendaylight.tcpmd5</groupId>
173             <artifactId>tcpmd5-api</artifactId>
174             <scope>test</scope>
175         </dependency>
176         <dependency>
177             <groupId>org.opendaylight.controller</groupId>
178             <artifactId>config-manager</artifactId>
179             <type>test-jar</type>
180         </dependency>
181         <dependency>
182             <groupId>org.opendaylight.controller</groupId>
183             <artifactId>config-manager</artifactId>
184             <scope>test</scope>
185         </dependency>
186         <dependency>
187             <groupId>org.opendaylight.controller</groupId>
188             <artifactId>config-util</artifactId>
189         </dependency>
190         <dependency>
191             <groupId>org.opendaylight.yangtools</groupId>
192             <artifactId>mockito-configuration</artifactId>
193         </dependency>
194         <dependency>
195             <groupId>${project.groupId}</groupId>
196             <artifactId>bgp-rib-impl</artifactId>
197             <type>test-jar</type>
198         </dependency>
199         <dependency>
200             <groupId>${project.groupId}</groupId>
201             <artifactId>bgp-rib-impl</artifactId>
202             <scope>test</scope>
203         </dependency>
204         <dependency>
205             <groupId>${project.groupId}</groupId>
206             <artifactId>bgp-rib-mock</artifactId>
207             <scope>test</scope>
208         </dependency>
209         <dependency>
210             <groupId>${project.groupId}</groupId>
211             <artifactId>bgp-util</artifactId>
212             <scope>test</scope>
213         </dependency>
214         <dependency>
215             <groupId>org.opendaylight.controller</groupId>
216             <artifactId>sal-binding-broker-impl</artifactId>
217             <scope>test</scope>
218         </dependency>
219         <dependency>
220             <groupId>org.opendaylight.controller</groupId>
221             <artifactId>netty-event-executor-config</artifactId>
222             <scope>test</scope>
223         </dependency>
224         <dependency>
225             <groupId>org.opendaylight.controller</groupId>
226             <artifactId>protocol-framework</artifactId>
227             <type>test-jar</type>
228         </dependency>
229         <dependency>
230             <groupId>org.opendaylight.controller</groupId>
231             <artifactId>sal-binding-broker-impl</artifactId>
232             <scope>test</scope>
233             <type>test-jar</type>
234         </dependency>
235         <dependency>
236             <groupId>org.opendaylight.controller</groupId>
237             <artifactId>netty-threadgroup-config</artifactId>
238             <scope>test</scope>
239         </dependency>
240     </dependencies>
241
242     <build>
243         <plugins>
244            <plugin>
245                <groupId>org.apache.felix</groupId>
246                <artifactId>maven-bundle-plugin</artifactId>
247                <extensions>true</extensions>
248                <configuration>
249                    <instructions>
250                        <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
251                    </instructions>
252                </configuration>
253            </plugin>
254            <plugin>
255                 <groupId>org.opendaylight.yangtools</groupId>
256                 <artifactId>yang-maven-plugin</artifactId>
257             </plugin>
258         </plugins>
259     </build>
260 </project>