Bump versions by 0.1.0 for next dev cycle
[bgpcep.git] / features / rsvp / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4       Copyright (c) 2015 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"
12          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
13          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
14     <modelVersion>4.0.0</modelVersion>
15     <parent>
16         <groupId>org.opendaylight.odlparent</groupId>
17         <artifactId>features-parent</artifactId>
18         <version>1.8.0-SNAPSHOT</version>
19         <relativePath/>
20     </parent>
21
22     <artifactId>features-rsvp</artifactId>
23     <groupId>org.opendaylight.bgpcep</groupId>
24     <version>0.7.0-SNAPSHOT</version>
25
26     <properties>
27         <mdsal.binding.base>0.10.0-SNAPSHOT</mdsal.binding.base>
28         <config.version>0.6.0-SNAPSHOT</config.version>
29     </properties>
30
31     <dependencyManagement>
32         <dependencies>
33             <dependency>
34                 <groupId>org.opendaylight.bgpcep</groupId>
35                 <artifactId>bgpcep-artifacts</artifactId>
36                 <version>${project.version}</version>
37                 <type>pom</type>
38                 <scope>import</scope>
39             </dependency>
40             <!-- Controller infrastructure -->
41             <dependency>
42                 <groupId>org.opendaylight.controller</groupId>
43                 <artifactId>config-artifacts</artifactId>
44                 <version>${config.version}</version>
45                 <scope>import</scope>
46                 <type>pom</type>
47             </dependency>
48         </dependencies>
49     </dependencyManagement>
50
51
52     <dependencies>
53         <dependency>
54             <groupId>${project.groupId}</groupId>
55             <artifactId>rsvp-api</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>${project.groupId}</groupId>
59             <artifactId>rsvp-spi</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>${project.groupId}</groupId>
63             <artifactId>rsvp-impl</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>${project.groupId}</groupId>
67             <artifactId>bgp-concepts</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>com.google.guava</groupId>
71             <artifactId>guava</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>org.opendaylight.mdsal.model</groupId>
75             <artifactId>features-mdsal-model</artifactId>
76             <version>${mdsal.binding.base}</version>
77             <classifier>features</classifier>
78             <type>xml</type>
79             <scope>runtime</scope>
80         </dependency>
81     </dependencies>
82
83   <!--
84       Maven Site Configuration
85
86       The following configuration is necessary for maven-site-plugin to
87       correctly identify the correct deployment path for OpenDaylight Maven
88       sites.
89   -->
90   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
91
92   <distributionManagement>
93     <site>
94       <id>opendaylight-site</id>
95       <url>${nexus.site.url}/${project.artifactId}/</url>
96     </site>
97   </distributionManagement>
98 </project>