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