Release Nitrogen
[bgpcep.git] / pcep / topology / 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 <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
11          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.3</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         <dependency>
80             <groupId>org.opendaylight.controller</groupId>
81             <artifactId>config-api</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>org.opendaylight.controller</groupId>
85             <artifactId>sal-binding-config</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>org.opendaylight.mdsal.model</groupId>
89             <artifactId>ietf-inet-types-2013-07-15</artifactId>
90         </dependency>
91         <dependency>
92             <groupId>org.opendaylight.mdsal.model</groupId>
93             <artifactId>ietf-topology</artifactId>
94         </dependency>
95         <dependency>
96             <groupId>org.opendaylight.mdsal</groupId>
97             <artifactId>yang-binding</artifactId>
98         </dependency>
99         <dependency>
100             <groupId>org.opendaylight.yangtools</groupId>
101             <artifactId>yang-common</artifactId>
102         </dependency>
103         <dependency>
104             <groupId>org.opendaylight.yangtools</groupId>
105             <artifactId>concepts</artifactId>
106         </dependency>
107         <dependency>
108             <groupId>io.netty</groupId>
109             <artifactId>netty-common</artifactId>
110         </dependency>
111         <dependency>
112             <groupId>io.netty</groupId>
113             <artifactId>netty-buffer</artifactId>
114         </dependency>
115         <dependency>
116             <groupId>io.netty</groupId>
117             <artifactId>netty-transport</artifactId>
118         </dependency>
119         <dependency>
120             <groupId>io.netty</groupId>
121             <artifactId>netty-transport-native-epoll</artifactId>
122             <classifier>linux-x86_64</classifier>
123         </dependency>
124         <dependency>
125             <groupId>${project.groupId}</groupId>
126             <artifactId>pcep-impl</artifactId>
127         </dependency>
128         <dependency>
129             <groupId>com.google.guava</groupId>
130             <artifactId>guava</artifactId>
131         </dependency>
132         <dependency>
133             <groupId>org.osgi</groupId>
134             <artifactId>org.osgi.core</artifactId>
135             <scope>provided</scope>
136         </dependency>
137         <dependency>
138             <groupId>org.osgi</groupId>
139             <artifactId>org.osgi.compendium</artifactId>
140         </dependency>
141         <!-- Test dependencies -->
142         <dependency>
143             <groupId>${project.groupId}</groupId>
144             <artifactId>testtool-util</artifactId>
145             <scope>test</scope>
146         </dependency>
147         <dependency>
148             <groupId>junit</groupId>
149             <artifactId>junit</artifactId>
150             <scope>test</scope>
151         </dependency>
152         <dependency>
153             <groupId>org.opendaylight.controller</groupId>
154             <artifactId>config-manager</artifactId>
155             <type>test-jar</type>
156         </dependency>
157         <dependency>
158             <groupId>org.opendaylight.controller</groupId>
159             <artifactId>config-manager</artifactId>
160             <scope>test</scope>
161         </dependency>
162         <dependency>
163             <groupId>org.opendaylight.controller</groupId>
164             <artifactId>config-util</artifactId>
165             <scope>test</scope>
166         </dependency>
167         <dependency>
168             <groupId>org.mockito</groupId>
169             <artifactId>mockito-core</artifactId>
170         </dependency>
171         <dependency>
172             <groupId>org.opendaylight.yangtools</groupId>
173             <artifactId>mockito-configuration</artifactId>
174             <scope>test</scope>
175         </dependency>
176         <dependency>
177             <groupId>org.opendaylight.controller</groupId>
178             <artifactId>sal-binding-broker-impl</artifactId>
179             <scope>test</scope>
180         </dependency>
181         <dependency>
182             <groupId>org.opendaylight.controller</groupId>
183             <artifactId>netty-timer-config</artifactId>
184             <scope>test</scope>
185         </dependency>
186         <dependency>
187             <groupId>org.opendaylight.controller</groupId>
188             <artifactId>netty-threadgroup-config</artifactId>
189             <scope>test</scope>
190         </dependency>
191         <dependency>
192             <groupId>${project.groupId}</groupId>
193             <artifactId>programming-impl</artifactId>
194             <scope>test</scope>
195         </dependency>
196         <dependency>
197             <groupId>${project.groupId}</groupId>
198             <artifactId>programming-impl</artifactId>
199             <type>test-jar</type>
200             <scope>test</scope>
201         </dependency>
202         <dependency>
203             <groupId>${project.groupId}</groupId>
204             <artifactId>pcep-impl</artifactId>
205             <type>test-jar</type>
206             <scope>test</scope>
207         </dependency>
208         <dependency>
209             <groupId>org.opendaylight.controller</groupId>
210             <artifactId>sal-binding-broker-impl</artifactId>
211             <scope>test</scope>
212             <type>test-jar</type>
213         </dependency>
214         <dependency>
215             <groupId>${project.groupId}</groupId>
216             <artifactId>pcep-pcc-mock</artifactId>
217             <version>${project.version}</version>
218             <scope>test</scope>
219         </dependency>
220         <dependency>
221             <groupId>org.opendaylight.controller</groupId>
222             <artifactId>sal-dom-broker-config</artifactId>
223             <scope>test</scope>
224         </dependency>
225         <dependency>
226             <groupId>org.opendaylight.yangtools</groupId>
227             <artifactId>yang-test-util</artifactId>
228         </dependency>
229     </dependencies>
230
231     <build>
232         <plugins>
233             <plugin>
234                 <groupId>org.apache.maven.plugins</groupId>
235                 <artifactId>maven-jar-plugin</artifactId>
236                 <executions>
237                     <execution>
238                         <phase>package</phase>
239                         <goals>
240                             <goal>test-jar</goal>
241                         </goals>
242                     </execution>
243                 </executions>
244             </plugin>
245             <plugin>
246                 <groupId>org.opendaylight.yangtools</groupId>
247                 <artifactId>yang-maven-plugin</artifactId>
248             </plugin>
249         </plugins>
250     </build>
251
252     <scm>
253         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
254         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
255         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
256         <tag>HEAD</tag>
257     </scm>
258
259     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
260     <distributionManagement>
261         <site>
262             <id>opendaylight-site</id>
263             <url>${nexus.site.url}/${project.artifactId}/</url>
264         </site>
265     </distributionManagement>
266 </project>