67b1a7e19b845ec5bca35d4a8f328cdea15aeb99
[bgpcep.git] / pcep / 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" 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>pcep-tunnel-provider</artifactId>
22     <description>PCEP Tunnel 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-topology-api</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>${project.groupId}</groupId>
33             <artifactId>pcep-topology-spi</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>${project.groupId}</groupId>
37             <artifactId>pcep-ietf-stateful07</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>${project.groupId}</groupId>
41             <artifactId>pcep-impl</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>${project.groupId}</groupId>
45             <artifactId>pcep-tunnel-api</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>${project.groupId}</groupId>
49             <artifactId>programming-tunnel-api</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>${project.groupId}</groupId>
53             <artifactId>pcep-api</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>${project.groupId}</groupId>
57             <artifactId>pcep-spi</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>${project.groupId}</groupId>
61             <artifactId>programming-topology-api</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>${project.groupId}</groupId>
65             <artifactId>programming-api</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>${project.groupId}</groupId>
69             <artifactId>programming-spi</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>${project.groupId}</groupId>
73             <artifactId>topology-api</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>${project.groupId}</groupId>
77             <artifactId>topology-tunnel-api</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
92         <dependency>
93             <groupId>org.opendaylight.mdsal</groupId>
94             <artifactId>yang-binding</artifactId>
95         </dependency>
96         <dependency>
97             <groupId>org.opendaylight.yangtools</groupId>
98             <artifactId>yang-common</artifactId>
99         </dependency>
100         <dependency>
101             <groupId>org.opendaylight.yangtools</groupId>
102             <artifactId>concepts</artifactId>
103         </dependency>
104         <dependency>
105             <groupId>org.opendaylight.mdsal.model</groupId>
106             <artifactId>ietf-inet-types-2013-07-15</artifactId>
107         </dependency>
108         <dependency>
109             <groupId>org.opendaylight.mdsal.model</groupId>
110             <artifactId>ietf-topology</artifactId>
111         </dependency>
112         <dependency>
113             <groupId>org.opendaylight.mdsal.model</groupId>
114             <artifactId>ietf-topology-l3-unicast-igp</artifactId>
115         </dependency>
116
117         <dependency>
118             <groupId>org.opendaylight.controller</groupId>
119             <artifactId>config-api</artifactId>
120         </dependency>
121         <dependency>
122             <groupId>${project.groupId}</groupId>
123             <artifactId>pcep-topology-provider</artifactId>
124         </dependency>
125         <dependency>
126             <groupId>org.opendaylight.controller</groupId>
127             <artifactId>sal-binding-config</artifactId>
128         </dependency>
129         <dependency>
130             <groupId>com.google.guava</groupId>
131             <artifactId>guava</artifactId>
132         </dependency>
133         <dependency>
134             <groupId>org.osgi</groupId>
135             <artifactId>org.osgi.core</artifactId>
136             <scope>provided</scope>
137         </dependency>
138
139         <!-- Testing dependencies -->
140         <dependency>
141             <groupId>${project.groupId}</groupId>
142             <artifactId>testtool-util</artifactId>
143             <scope>test</scope>
144         </dependency>
145         <dependency>
146             <groupId>junit</groupId>
147             <artifactId>junit</artifactId>
148         </dependency>
149         <dependency>
150             <groupId>org.opendaylight.controller</groupId>
151             <artifactId>config-manager</artifactId>
152             <type>test-jar</type>
153         </dependency>
154         <dependency>
155             <groupId>org.opendaylight.controller</groupId>
156             <artifactId>config-manager</artifactId>
157             <scope>test</scope>
158         </dependency>
159         <dependency>
160             <groupId>org.opendaylight.controller</groupId>
161             <artifactId>config-util</artifactId>
162         </dependency>
163         <dependency>
164             <groupId>org.opendaylight.yangtools</groupId>
165             <artifactId>mockito-configuration</artifactId>
166         </dependency>
167         <dependency>
168             <groupId>org.opendaylight.controller</groupId>
169             <artifactId>netty-timer-config</artifactId>
170             <scope>test</scope>
171         </dependency>
172         <dependency>
173             <groupId>org.opendaylight.controller</groupId>
174             <artifactId>netty-threadgroup-config</artifactId>
175         </dependency>
176         <dependency>
177             <groupId>${project.groupId}</groupId>
178             <artifactId>programming-impl</artifactId>
179             <type>test-jar</type>
180         </dependency>
181         <dependency>
182             <groupId>${project.groupId}</groupId>
183             <artifactId>programming-impl</artifactId>
184             <scope>test</scope>
185         </dependency>
186         <dependency>
187             <groupId>${project.groupId}</groupId>
188             <artifactId>pcep-topology-provider</artifactId>
189             <type>test-jar</type>
190         </dependency>
191         <dependency>
192             <groupId>${project.groupId}</groupId>
193             <artifactId>pcep-impl</artifactId>
194             <type>test-jar</type>
195         </dependency>
196         <dependency>
197             <groupId>org.opendaylight.controller</groupId>
198             <artifactId>sal-binding-broker-impl</artifactId>
199             <scope>test</scope>
200         </dependency>
201         <dependency>
202             <groupId>org.opendaylight.controller</groupId>
203             <artifactId>sal-binding-broker-impl</artifactId>
204             <scope>test</scope>
205             <type>test-jar</type>
206         </dependency>
207         <dependency>
208             <groupId>org.mockito</groupId>
209             <artifactId>mockito-core</artifactId>
210         </dependency>
211         <dependency>
212             <groupId>org.opendaylight.controller</groupId>
213             <artifactId>sal-dom-broker-config</artifactId>
214             <scope>test</scope>
215         </dependency>
216         <dependency>
217             <groupId>org.opendaylight.yangtools</groupId>
218             <artifactId>yang-test-util</artifactId>
219         </dependency>
220     </dependencies>
221
222     <scm>
223         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
224         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
225         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
226         <tag>HEAD</tag>
227     </scm>
228
229     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
230     <distributionManagement>
231         <site>
232             <id>opendaylight-site</id>
233             <url>${nexus.site.url}/${project.artifactId}/</url>
234         </site>
235     </distributionManagement>
236 </project>