Bump versions to 0.20.5-SNAPSHOT
[bgpcep.git] / pcep / tunnel / tunnel-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"
12          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
13
14     <modelVersion>4.0.0</modelVersion>
15     <parent>
16         <groupId>org.opendaylight.bgpcep</groupId>
17         <artifactId>bgpcep-parent</artifactId>
18         <version>0.20.5-SNAPSHOT</version>
19         <relativePath>../../../parent</relativePath>
20     </parent>
21
22     <artifactId>pcep-tunnel-provider</artifactId>
23     <description>PCEP Tunnel Topology Provider</description>
24     <packaging>bundle</packaging>
25     <name>${project.artifactId}</name>
26
27     <properties>
28         <odlparent.dependency.enforce>false</odlparent.dependency.enforce>
29     </properties>
30
31     <dependencies>
32         <dependency>
33             <groupId>${project.groupId}</groupId>
34             <artifactId>pcep-topology-api</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>${project.groupId}</groupId>
38             <artifactId>pcep-topology-spi</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>${project.groupId}</groupId>
42             <artifactId>pcep-ietf-stateful</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>${project.groupId}</groupId>
46             <artifactId>pcep-tunnel-api</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>${project.groupId}</groupId>
50             <artifactId>programming-tunnel-api</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>${project.groupId}</groupId>
54             <artifactId>pcep-api</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>${project.groupId}</groupId>
58             <artifactId>programming-topology-api</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>${project.groupId}</groupId>
62             <artifactId>programming-api</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>${project.groupId}</groupId>
66             <artifactId>programming-spi</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>${project.groupId}</groupId>
70             <artifactId>topology-api</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>${project.groupId}</groupId>
74             <artifactId>concepts</artifactId>
75         </dependency>
76         <dependency>
77             <groupId>${project.groupId}</groupId>
78             <artifactId>topology-tunnel-api</artifactId>
79         </dependency>
80         <dependency>
81             <groupId>${project.groupId}</groupId>
82             <artifactId>rsvp-api</artifactId>
83         </dependency>
84
85         <dependency>
86             <groupId>org.opendaylight.mdsal</groupId>
87             <artifactId>yang-binding</artifactId>
88         </dependency>
89         <dependency>
90             <groupId>org.opendaylight.mdsal</groupId>
91             <artifactId>mdsal-binding-api</artifactId>
92         </dependency>
93         <dependency>
94             <groupId>org.opendaylight.mdsal</groupId>
95             <artifactId>mdsal-common-api</artifactId>
96         </dependency>
97         <dependency>
98             <groupId>org.opendaylight.mdsal</groupId>
99             <artifactId>mdsal-singleton-common-api</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>org.opendaylight.mdsal.binding.model.ietf</groupId>
111             <artifactId>rfc6991-ietf-inet-types</artifactId>
112         </dependency>
113         <dependency>
114             <groupId>org.opendaylight.mdsal.model</groupId>
115             <artifactId>ietf-topology</artifactId>
116         </dependency>
117         <dependency>
118             <groupId>com.google.guava</groupId>
119             <artifactId>guava</artifactId>
120         </dependency>
121         <dependency>
122             <groupId>org.apache.commons</groupId>
123             <artifactId>commons-lang3</artifactId>
124         </dependency>
125         <dependency>
126             <groupId>org.osgi</groupId>
127             <artifactId>org.osgi.framework</artifactId>
128         </dependency>
129         <dependency>
130             <groupId>org.osgi</groupId>
131             <artifactId>org.osgi.util.tracker</artifactId>
132         </dependency>
133         <dependency>
134             <groupId>org.osgi</groupId>
135             <artifactId>org.osgi.service.component.annotations</artifactId>
136         </dependency>
137
138         <!-- Testing dependencies -->
139         <dependency>
140             <groupId>${project.groupId}</groupId>
141             <artifactId>testtool-util</artifactId>
142             <scope>test</scope>
143         </dependency>
144         <dependency>
145             <groupId>org.opendaylight.yangtools</groupId>
146             <artifactId>mockito-configuration</artifactId>
147         </dependency>
148         <dependency>
149             <groupId>${project.groupId}</groupId>
150             <artifactId>programming-impl</artifactId>
151             <type>test-jar</type>
152         </dependency>
153         <dependency>
154             <groupId>${project.groupId}</groupId>
155             <artifactId>programming-impl</artifactId>
156             <scope>test</scope>
157         </dependency>
158         <dependency>
159             <groupId>${project.groupId}</groupId>
160             <artifactId>pcep-topology-provider</artifactId>
161             <type>test-jar</type>
162         </dependency>
163         <dependency>
164             <groupId>${project.groupId}</groupId>
165             <artifactId>pcep-impl</artifactId>
166             <type>test-jar</type>
167         </dependency>
168         <dependency>
169             <groupId>org.opendaylight.mdsal</groupId>
170             <artifactId>mdsal-binding-test-utils</artifactId>
171             <scope>test</scope>
172         </dependency>
173         <dependency>
174             <groupId>org.opendaylight.mdsal</groupId>
175             <artifactId>mdsal-binding-dom-adapter</artifactId>
176             <type>test-jar</type>
177             <scope>test</scope>
178         </dependency>
179         <dependency>
180             <groupId>org.opendaylight.mdsal</groupId>
181             <artifactId>mdsal-binding-dom-adapter</artifactId>
182             <scope>test</scope>
183         </dependency>
184         <dependency>
185             <groupId>org.opendaylight.yangtools</groupId>
186             <artifactId>yang-test-util</artifactId>
187         </dependency>
188     </dependencies>
189
190     <scm>
191         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
192         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
193         <url>https://wiki.opendaylight.org/display/ODL/BGPCEP</url>
194         <tag>HEAD</tag>
195     </scm>
196 </project>