Bump versions by x.y.(z+1)
[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     <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.6.5-SNAPSHOT</version>
24     </parent>
25
26     <artifactId>pcep-tunnel-provider</artifactId>
27     <description>PCEP Tunnel 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-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>pcep-ietf-stateful07</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>${project.groupId}</groupId>
49             <artifactId>pcep-impl</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>${project.groupId}</groupId>
53             <artifactId>pcep-tunnel-api</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>${project.groupId}</groupId>
57             <artifactId>programming-tunnel-api</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>${project.groupId}</groupId>
61             <artifactId>pcep-api</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>${project.groupId}</groupId>
65             <artifactId>pcep-spi</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>${project.groupId}</groupId>
69             <artifactId>programming-topology-api</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>${project.groupId}</groupId>
73             <artifactId>programming-api</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>${project.groupId}</groupId>
77             <artifactId>programming-spi</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>${project.groupId}</groupId>
81             <artifactId>topology-api</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>${project.groupId}</groupId>
85             <artifactId>topology-tunnel-api</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>org.opendaylight.controller</groupId>
89             <artifactId>sal-binding-api</artifactId>
90         </dependency>
91         <dependency>
92             <groupId>org.opendaylight.controller</groupId>
93             <artifactId>sal-common-api</artifactId>
94         </dependency>
95         <dependency>
96             <groupId>org.slf4j</groupId>
97             <artifactId>slf4j-api</artifactId>
98         </dependency>
99
100         <dependency>
101             <groupId>org.opendaylight.mdsal</groupId>
102             <artifactId>yang-binding</artifactId>
103         </dependency>
104         <dependency>
105             <groupId>org.opendaylight.yangtools</groupId>
106             <artifactId>yang-common</artifactId>
107         </dependency>
108         <dependency>
109             <groupId>org.opendaylight.yangtools</groupId>
110             <artifactId>concepts</artifactId>
111         </dependency>
112         <dependency>
113             <groupId>org.opendaylight.mdsal.model</groupId>
114             <artifactId>ietf-inet-types-2013-07-15</artifactId>
115         </dependency>
116         <dependency>
117             <groupId>org.opendaylight.mdsal.model</groupId>
118             <artifactId>ietf-topology</artifactId>
119         </dependency>
120         <dependency>
121             <groupId>org.opendaylight.mdsal.model</groupId>
122             <artifactId>ietf-topology-l3-unicast-igp</artifactId>
123         </dependency>
124
125         <dependency>
126             <groupId>org.opendaylight.controller</groupId>
127             <artifactId>config-api</artifactId>
128         </dependency>
129         <dependency>
130             <groupId>${project.groupId}</groupId>
131             <artifactId>pcep-topology-provider</artifactId>
132         </dependency>
133         <dependency>
134             <groupId>org.opendaylight.controller</groupId>
135             <artifactId>sal-binding-config</artifactId>
136         </dependency>
137         <dependency>
138             <groupId>com.google.guava</groupId>
139             <artifactId>guava</artifactId>
140         </dependency>
141         <dependency>
142             <groupId>org.osgi</groupId>
143             <artifactId>org.osgi.core</artifactId>
144             <scope>provided</scope>
145         </dependency>
146
147         <!-- Testing dependencies -->
148         <dependency>
149             <groupId>${project.groupId}</groupId>
150             <artifactId>testtool-util</artifactId>
151             <scope>test</scope>
152         </dependency>
153         <dependency>
154             <groupId>junit</groupId>
155             <artifactId>junit</artifactId>
156         </dependency>
157         <dependency>
158             <groupId>org.opendaylight.controller</groupId>
159             <artifactId>config-manager</artifactId>
160             <type>test-jar</type>
161         </dependency>
162         <dependency>
163             <groupId>org.opendaylight.controller</groupId>
164             <artifactId>config-manager</artifactId>
165             <scope>test</scope>
166         </dependency>
167         <dependency>
168             <groupId>org.opendaylight.controller</groupId>
169             <artifactId>config-util</artifactId>
170         </dependency>
171         <dependency>
172             <groupId>org.opendaylight.yangtools</groupId>
173             <artifactId>mockito-configuration</artifactId>
174         </dependency>
175         <dependency>
176             <groupId>org.opendaylight.controller</groupId>
177             <artifactId>netty-timer-config</artifactId>
178             <scope>test</scope>
179         </dependency>
180         <dependency>
181             <groupId>org.opendaylight.controller</groupId>
182             <artifactId>netty-threadgroup-config</artifactId>
183         </dependency>
184         <dependency>
185             <groupId>${project.groupId}</groupId>
186             <artifactId>programming-impl</artifactId>
187             <type>test-jar</type>
188         </dependency>
189         <dependency>
190             <groupId>${project.groupId}</groupId>
191             <artifactId>programming-impl</artifactId>
192             <scope>test</scope>
193         </dependency>
194         <dependency>
195             <groupId>${project.groupId}</groupId>
196             <artifactId>pcep-topology-provider</artifactId>
197             <type>test-jar</type>
198         </dependency>
199         <dependency>
200             <groupId>${project.groupId}</groupId>
201             <artifactId>pcep-impl</artifactId>
202             <type>test-jar</type>
203         </dependency>
204         <dependency>
205             <groupId>org.opendaylight.controller</groupId>
206             <artifactId>sal-binding-broker-impl</artifactId>
207             <scope>test</scope>
208         </dependency>
209         <dependency>
210             <groupId>org.opendaylight.controller</groupId>
211             <artifactId>sal-binding-broker-impl</artifactId>
212             <scope>test</scope>
213             <type>test-jar</type>
214         </dependency>
215         <dependency>
216             <groupId>org.mockito</groupId>
217             <artifactId>mockito-core</artifactId>
218         </dependency>
219         <dependency>
220             <groupId>org.opendaylight.controller</groupId>
221             <artifactId>sal-dom-broker-config</artifactId>
222             <scope>test</scope>
223         </dependency>
224     </dependencies>
225
226     <build>
227         <plugins>
228            <plugin>
229                <groupId>org.apache.felix</groupId>
230                <artifactId>maven-bundle-plugin</artifactId>
231                <extensions>true</extensions>
232                <configuration>
233                    <instructions>
234                        <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
235                    </instructions>
236                </configuration>
237            </plugin>
238            <plugin>
239                 <groupId>org.opendaylight.yangtools</groupId>
240                 <artifactId>yang-maven-plugin</artifactId>
241             </plugin>
242         </plugins>
243     </build>
244
245   <!--
246       Maven Site Configuration
247
248       The following configuration is necessary for maven-site-plugin to
249       correctly identify the correct deployment path for OpenDaylight Maven
250       sites.
251   -->
252   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
253
254   <distributionManagement>
255     <site>
256       <id>opendaylight-site</id>
257       <url>${nexus.site.url}/${project.artifactId}/</url>
258     </site>
259   </distributionManagement>
260 </project>