BUG-6857: Network Topology Config Loader
[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.7.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-inet</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>${project.groupId}</groupId>
69             <artifactId>bgp-linkstate</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>${project.groupId}</groupId>
73             <artifactId>topology-api</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>org.opendaylight.yangtools</groupId>
77             <artifactId>concepts</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>org.opendaylight.mdsal</groupId>
81             <artifactId>yang-binding</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>org.opendaylight.yangtools</groupId>
85             <artifactId>yang-common</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>org.opendaylight.controller</groupId>
89             <artifactId>sal-binding-api</artifactId>
90         </dependency>
91         <dependency>
92             <groupId>org.opendaylight.controller</groupId>
93             <artifactId>sal-common-api</artifactId>
94         </dependency>
95         <dependency>
96             <groupId>org.slf4j</groupId>
97             <artifactId>slf4j-api</artifactId>
98         </dependency>
99         <dependency>
100             <groupId>com.google.guava</groupId>
101             <artifactId>guava</artifactId>
102         </dependency>
103         <dependency>
104             <groupId>${project.groupId}</groupId>
105             <artifactId>bgp-config-loader-spi</artifactId>
106         </dependency>
107         <dependency>
108             <groupId>org.opendaylight.mdsal.model</groupId>
109             <artifactId>ietf-ted</artifactId>
110         </dependency>
111         <dependency>
112             <groupId>org.opendaylight.mdsal.model</groupId>
113             <artifactId>ietf-topology</artifactId>
114         </dependency>
115         <dependency>
116             <groupId>org.opendaylight.mdsal.model</groupId>
117             <artifactId>ietf-topology-isis</artifactId>
118         </dependency>
119         <dependency>
120             <groupId>org.opendaylight.mdsal.model</groupId>
121             <artifactId>ietf-topology-ospf</artifactId>
122         </dependency>
123         <dependency>
124             <groupId>org.opendaylight.mdsal.model</groupId>
125             <artifactId>ietf-topology-l3-unicast-igp</artifactId>
126         </dependency>
127         <dependency>
128             <groupId>org.opendaylight.mdsal.model</groupId>
129             <artifactId>ietf-inet-types-2013-07-15</artifactId>
130         </dependency>
131
132         <dependency>
133             <groupId>org.opendaylight.controller</groupId>
134             <artifactId>config-api</artifactId>
135         </dependency>
136         <dependency>
137             <groupId>org.opendaylight.controller</groupId>
138             <artifactId>sal-binding-config</artifactId>
139         </dependency>
140
141         <dependency>
142             <groupId>io.netty</groupId>
143             <artifactId>netty-buffer</artifactId>
144         </dependency>
145         <dependency>
146             <groupId>io.netty</groupId>
147             <artifactId>netty-common</artifactId>
148         </dependency>
149         <dependency>
150             <groupId>org.osgi</groupId>
151             <artifactId>org.osgi.core</artifactId>
152             <scope>provided</scope>
153         </dependency>
154         <dependency>
155             <groupId>com.google.code.findbugs</groupId>
156             <artifactId>jsr305</artifactId>
157         </dependency>
158         <dependency>
159             <groupId>org.apache.aries.blueprint</groupId>
160             <artifactId>org.apache.aries.blueprint.core</artifactId>
161         </dependency>
162
163         <!-- Test dependencies -->
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     </dependencies>
231
232     <build>
233         <plugins>
234            <plugin>
235                <groupId>org.apache.felix</groupId>
236                <artifactId>maven-bundle-plugin</artifactId>
237                <extensions>true</extensions>
238                <configuration>
239                    <instructions>
240                        <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
241                    </instructions>
242                </configuration>
243            </plugin>
244            <plugin>
245                 <groupId>org.opendaylight.yangtools</groupId>
246                 <artifactId>yang-maven-plugin</artifactId>
247             </plugin>
248         </plugins>
249     </build>
250
251   <!--
252       Maven Site Configuration
253
254       The following configuration is necessary for maven-site-plugin to
255       correctly identify the correct deployment path for OpenDaylight Maven
256       sites.
257   -->
258   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
259
260   <distributionManagement>
261     <site>
262       <id>opendaylight-site</id>
263       <url>${nexus.site.url}/${project.artifactId}/</url>
264     </site>
265   </distributionManagement>
266 </project>