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