Release Lithium-SR3
[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.4.3-Lithium-SR3</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         <dependency>
92             <groupId>${project.groupId}</groupId>
93             <artifactId>util</artifactId>
94         </dependency>
95
96         <dependency>
97             <groupId>org.opendaylight.controller</groupId>
98             <artifactId>config-api</artifactId>
99         </dependency>
100
101         <dependency>
102             <groupId>org.opendaylight.tcpmd5</groupId>
103             <artifactId>tcpmd5-api</artifactId>
104         </dependency>
105         <dependency>
106             <groupId>org.opendaylight.controller</groupId>
107             <artifactId>sal-binding-config</artifactId>
108         </dependency>
109         <dependency>
110             <groupId>org.opendaylight.controller</groupId>
111             <artifactId>protocol-framework</artifactId>
112         </dependency>
113         <dependency>
114             <groupId>org.opendaylight.yangtools.model</groupId>
115             <artifactId>ietf-inet-types</artifactId>
116         </dependency>
117         <dependency>
118             <groupId>org.opendaylight.yangtools.model</groupId>
119             <artifactId>ietf-topology</artifactId>
120         </dependency>
121         <dependency>
122             <groupId>org.opendaylight.yangtools</groupId>
123             <artifactId>yang-binding</artifactId>
124         </dependency>
125         <dependency>
126             <groupId>org.opendaylight.yangtools</groupId>
127             <artifactId>yang-common</artifactId>
128         </dependency>
129         <dependency>
130             <groupId>org.opendaylight.yangtools</groupId>
131             <artifactId>concepts</artifactId>
132         </dependency>
133         <dependency>
134             <groupId>io.netty</groupId>
135             <artifactId>netty-common</artifactId>
136         </dependency>
137         <dependency>
138             <groupId>io.netty</groupId>
139             <artifactId>netty-buffer</artifactId>
140         </dependency>
141         <dependency>
142             <groupId>io.netty</groupId>
143             <artifactId>netty-transport</artifactId>
144         </dependency>
145
146         <dependency>
147             <groupId>${project.groupId}</groupId>
148             <artifactId>pcep-impl</artifactId>
149         </dependency>
150         <dependency>
151             <groupId>com.google.guava</groupId>
152             <artifactId>guava</artifactId>
153         </dependency>
154         <dependency>
155             <groupId>com.google.code.findbugs</groupId>
156             <artifactId>jsr305</artifactId>
157         </dependency>
158         <dependency>
159             <groupId>org.osgi</groupId>
160             <artifactId>org.osgi.core</artifactId>
161             <scope>provided</scope>
162         </dependency>
163
164         <!-- Test dependencies -->
165         <dependency>
166             <groupId>junit</groupId>
167             <artifactId>junit</artifactId>
168             <scope>test</scope>
169         </dependency>
170         <dependency>
171             <groupId>org.opendaylight.controller</groupId>
172             <artifactId>config-manager</artifactId>
173             <type>test-jar</type>
174         </dependency>
175         <dependency>
176             <groupId>org.opendaylight.controller</groupId>
177             <artifactId>config-manager</artifactId>
178             <scope>test</scope>
179         </dependency>
180         <dependency>
181             <groupId>org.opendaylight.controller</groupId>
182             <artifactId>config-util</artifactId>
183             <scope>test</scope>
184         </dependency>
185         <dependency>
186             <groupId>org.mockito</groupId>
187             <artifactId>mockito-core</artifactId>
188         </dependency>
189         <dependency>
190             <groupId>org.opendaylight.yangtools</groupId>
191             <artifactId>mockito-configuration</artifactId>
192             <scope>test</scope>
193         </dependency>
194         <dependency>
195             <groupId>org.opendaylight.controller</groupId>
196             <artifactId>sal-binding-broker-impl</artifactId>
197             <scope>test</scope>
198         </dependency>
199         <dependency>
200             <groupId>org.opendaylight.controller</groupId>
201             <artifactId>netty-timer-config</artifactId>
202             <scope>test</scope>
203         </dependency>
204         <dependency>
205             <groupId>org.opendaylight.controller</groupId>
206             <artifactId>netty-threadgroup-config</artifactId>
207             <scope>test</scope>
208         </dependency>
209         <dependency>
210             <groupId>${project.groupId}</groupId>
211             <artifactId>programming-impl</artifactId>
212             <scope>test</scope>
213         </dependency>
214         <dependency>
215             <groupId>${project.groupId}</groupId>
216             <artifactId>pcep-ietf-stateful02</artifactId>
217             <type>test-jar</type>
218             <scope>test</scope>
219         </dependency>
220         <dependency>
221             <groupId>${project.groupId}</groupId>
222             <artifactId>programming-impl</artifactId>
223             <type>test-jar</type>
224             <scope>test</scope>
225         </dependency>
226         <dependency>
227             <groupId>${project.groupId}</groupId>
228             <artifactId>pcep-impl</artifactId>
229             <type>test-jar</type>
230             <scope>test</scope>
231         </dependency>
232         <dependency>
233             <groupId>org.opendaylight.tcpmd5</groupId>
234             <artifactId>tcpmd5-jni</artifactId>
235             <scope>test</scope>
236         </dependency>
237         <dependency>
238             <groupId>org.opendaylight.tcpmd5</groupId>
239             <artifactId>tcpmd5-jni</artifactId>
240             <type>test-jar</type>
241             <scope>test</scope>
242         </dependency>
243         <dependency>
244             <groupId>org.opendaylight.controller</groupId>
245             <artifactId>sal-binding-broker-impl</artifactId>
246             <scope>test</scope>
247             <type>test-jar</type>
248         </dependency>
249         <dependency>
250             <groupId>${project.groupId}</groupId>
251             <artifactId>pcep-pcc-mock</artifactId>
252             <version>${project.version}</version>
253             <scope>test</scope>
254         </dependency>
255     </dependencies>
256
257     <build>
258         <plugins>
259             <plugin>
260                 <groupId>org.apache.maven.plugins</groupId>
261                 <artifactId>maven-jar-plugin</artifactId>
262                 <executions>
263                     <execution>
264                         <phase>package</phase>
265                         <goals>
266                             <goal>test-jar</goal>
267                         </goals>
268                     </execution>
269                 </executions>
270             </plugin>
271             <plugin>
272                 <groupId>org.opendaylight.yangtools</groupId>
273                 <artifactId>yang-maven-plugin</artifactId>
274             </plugin>
275            <plugin>
276                <groupId>org.apache.felix</groupId>
277                <artifactId>maven-bundle-plugin</artifactId>
278                <extensions>true</extensions>
279                <configuration>
280                    <instructions>
281                        <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
282                    </instructions>
283                </configuration>
284            </plugin>
285         </plugins>
286     </build>
287 </project>