Bump versions by x.(y+1).z for next dev cycle
[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.9.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>org.osgi</groupId>
137             <artifactId>org.osgi.core</artifactId>
138             <scope>provided</scope>
139         </dependency>
140         <dependency>
141             <groupId>org.osgi</groupId>
142             <artifactId>org.osgi.compendium</artifactId>
143         </dependency>
144         <!-- Test dependencies -->
145         <dependency>
146             <groupId>${project.groupId}</groupId>
147             <artifactId>testtool-util</artifactId>
148             <scope>test</scope>
149         </dependency>
150         <dependency>
151             <groupId>junit</groupId>
152             <artifactId>junit</artifactId>
153             <scope>test</scope>
154         </dependency>
155         <dependency>
156             <groupId>org.opendaylight.controller</groupId>
157             <artifactId>config-manager</artifactId>
158             <type>test-jar</type>
159         </dependency>
160         <dependency>
161             <groupId>org.opendaylight.controller</groupId>
162             <artifactId>config-manager</artifactId>
163             <scope>test</scope>
164         </dependency>
165         <dependency>
166             <groupId>org.opendaylight.controller</groupId>
167             <artifactId>config-util</artifactId>
168             <scope>test</scope>
169         </dependency>
170         <dependency>
171             <groupId>org.mockito</groupId>
172             <artifactId>mockito-core</artifactId>
173         </dependency>
174         <dependency>
175             <groupId>org.opendaylight.yangtools</groupId>
176             <artifactId>mockito-configuration</artifactId>
177             <scope>test</scope>
178         </dependency>
179         <dependency>
180             <groupId>org.opendaylight.controller</groupId>
181             <artifactId>sal-binding-broker-impl</artifactId>
182             <scope>test</scope>
183         </dependency>
184         <dependency>
185             <groupId>org.opendaylight.controller</groupId>
186             <artifactId>netty-timer-config</artifactId>
187             <scope>test</scope>
188         </dependency>
189         <dependency>
190             <groupId>org.opendaylight.controller</groupId>
191             <artifactId>netty-threadgroup-config</artifactId>
192             <scope>test</scope>
193         </dependency>
194         <dependency>
195             <groupId>${project.groupId}</groupId>
196             <artifactId>programming-impl</artifactId>
197             <scope>test</scope>
198         </dependency>
199         <dependency>
200             <groupId>${project.groupId}</groupId>
201             <artifactId>programming-impl</artifactId>
202             <type>test-jar</type>
203             <scope>test</scope>
204         </dependency>
205         <dependency>
206             <groupId>${project.groupId}</groupId>
207             <artifactId>pcep-impl</artifactId>
208             <type>test-jar</type>
209             <scope>test</scope>
210         </dependency>
211         <dependency>
212             <groupId>org.opendaylight.controller</groupId>
213             <artifactId>sal-binding-broker-impl</artifactId>
214             <scope>test</scope>
215             <type>test-jar</type>
216         </dependency>
217         <dependency>
218             <groupId>${project.groupId}</groupId>
219             <artifactId>pcep-pcc-mock</artifactId>
220             <version>${project.version}</version>
221             <scope>test</scope>
222         </dependency>
223         <dependency>
224             <groupId>org.opendaylight.controller</groupId>
225             <artifactId>sal-dom-broker-config</artifactId>
226             <scope>test</scope>
227         </dependency>
228         <dependency>
229             <groupId>org.opendaylight.yangtools</groupId>
230             <artifactId>yang-test-util</artifactId>
231         </dependency>
232     </dependencies>
233
234     <build>
235         <plugins>
236             <plugin>
237                 <groupId>org.apache.maven.plugins</groupId>
238                 <artifactId>maven-jar-plugin</artifactId>
239                 <executions>
240                     <execution>
241                         <phase>package</phase>
242                         <goals>
243                             <goal>test-jar</goal>
244                         </goals>
245                     </execution>
246                 </executions>
247             </plugin>
248             <plugin>
249                 <groupId>org.opendaylight.yangtools</groupId>
250                 <artifactId>yang-maven-plugin</artifactId>
251             </plugin>
252         </plugins>
253     </build>
254
255     <scm>
256         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
257         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
258         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
259         <tag>HEAD</tag>
260     </scm>
261
262     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
263     <distributionManagement>
264         <site>
265             <id>opendaylight-site</id>
266             <url>${nexus.site.url}/${project.artifactId}/</url>
267         </site>
268     </distributionManagement>
269 </project>