Cleanup eclipse warnings
[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.8.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
147         <!-- Test dependencies -->
148         <dependency>
149             <groupId>${project.groupId}</groupId>
150             <artifactId>testtool-util</artifactId>
151             <scope>test</scope>
152         </dependency>
153         <dependency>
154             <groupId>${project.groupId}</groupId>
155             <artifactId>bgp-config-loader-impl</artifactId>
156             <scope>test</scope>
157         </dependency>
158         <dependency>
159             <groupId>${project.groupId}</groupId>
160             <artifactId>bgp-config-loader-impl</artifactId>
161             <type>test-jar</type>
162             <scope>test</scope>
163         </dependency>
164         <dependency>
165             <groupId>org.opendaylight.controller</groupId>
166             <artifactId>config-manager</artifactId>
167             <type>test-jar</type>
168         </dependency>
169         <dependency>
170             <groupId>org.opendaylight.controller</groupId>
171             <artifactId>config-manager</artifactId>
172             <scope>test</scope>
173         </dependency>
174         <dependency>
175             <groupId>org.opendaylight.controller</groupId>
176             <artifactId>config-util</artifactId>
177         </dependency>
178
179         <dependency>
180             <groupId>${project.groupId}</groupId>
181             <artifactId>bgp-rib-impl</artifactId>
182             <type>test-jar</type>
183         </dependency>
184         <dependency>
185             <groupId>${project.groupId}</groupId>
186             <artifactId>bgp-rib-impl</artifactId>
187             <scope>test</scope>
188         </dependency>
189         <dependency>
190             <groupId>org.opendaylight.controller</groupId>
191             <artifactId>sal-binding-broker-impl</artifactId>
192             <scope>test</scope>
193             <type>test-jar</type>
194         </dependency>
195         <dependency>
196             <groupId>org.opendaylight.controller</groupId>
197             <artifactId>sal-dom-broker-config</artifactId>
198             <scope>test</scope>
199         </dependency>
200         <dependency>
201             <groupId>${project.groupId}</groupId>
202             <artifactId>bgp-controller-config</artifactId>
203             <scope>test</scope>
204         </dependency>
205         <!-- junit/mockito default -->
206         <dependency>
207             <groupId>org.mockito</groupId>
208             <artifactId>mockito-core</artifactId>
209             <scope>test</scope>
210         </dependency>
211         <dependency>
212             <groupId>junit</groupId>
213             <artifactId>junit</artifactId>
214         </dependency>
215         <dependency>
216             <groupId>org.opendaylight.yangtools</groupId>
217             <artifactId>mockito-configuration</artifactId>
218         </dependency>
219         <!-- netty -->
220         <dependency>
221             <groupId>org.opendaylight.controller</groupId>
222             <artifactId>netty-event-executor-config</artifactId>
223             <scope>test</scope>
224         </dependency>
225         <dependency>
226             <groupId>org.opendaylight.controller</groupId>
227             <artifactId>netty-threadgroup-config</artifactId>
228             <scope>test</scope>
229         </dependency>
230         <dependency>
231             <groupId>org.opendaylight.yangtools</groupId>
232             <artifactId>yang-test-util</artifactId>
233         </dependency>
234     </dependencies>
235
236     <build>
237         <plugins>
238             <plugin>
239                 <groupId>org.apache.maven.plugins</groupId>
240                 <artifactId>maven-remote-resources-plugin</artifactId>
241                 <configuration>
242                     <attachToMain>false</attachToMain>
243                     <resourceBundles>
244                         <resourceBundle>${project.groupId}:bgp-controller-config:${project.version}</resourceBundle>
245                     </resourceBundles>
246                 </configuration>
247                 <executions>
248                     <execution>
249                         <phase>process-test-sources</phase>
250                         <goals>
251                             <goal>process</goal>
252                         </goals>
253                     </execution>
254                 </executions>
255             </plugin>
256         </plugins>
257     </build>
258     <scm>
259         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
260         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
261         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
262         <tag>HEAD</tag>
263     </scm>
264
265     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
266     <distributionManagement>
267         <site>
268             <id>opendaylight-site</id>
269             <url>${nexus.site.url}/${project.artifactId}/</url>
270         </site>
271     </distributionManagement>
272 </project>