Release Carbon
[bgpcep.git] / features / rsvp / 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.1-Carbon</version>
19         <relativePath/>
20     </parent>
21
22     <artifactId>features-rsvp</artifactId>
23     <groupId>org.opendaylight.bgpcep</groupId>
24     <version>0.7.1-Carbon</version>
25
26     <properties>
27         <mdsal.binding.base>0.10.1-Carbon</mdsal.binding.base>
28         <config.version>0.6.1-Carbon</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>org.opendaylight.mdsal.model</groupId>
71             <artifactId>features-mdsal-model</artifactId>
72             <version>${mdsal.binding.base}</version>
73             <classifier>features</classifier>
74             <type>xml</type>
75             <scope>runtime</scope>
76         </dependency>
77     </dependencies>
78
79     <!--
80         Maven Site Configuration
81
82         The following configuration is necessary for maven-site-plugin to
83         correctly identify the correct deployment path for OpenDaylight Maven
84         sites.
85     -->
86     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
87
88     <distributionManagement>
89         <site>
90             <id>opendaylight-site</id>
91             <url>${nexus.site.url}/${project.artifactId}/</url>
92         </site>
93     </distributionManagement>
94 </project>