Release Carbon
[bgpcep.git] / features / rsvp / odl-bgpcep-rsvp-dependencies / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <modelVersion>4.0.0</modelVersion>
6     <parent>
7         <groupId>org.opendaylight.odlparent</groupId>
8         <artifactId>single-feature-parent</artifactId>
9         <version>1.8.4-Carbon</version>
10         <relativePath/>
11     </parent>
12
13     <groupId>org.opendaylight.bgpcep</groupId>
14     <artifactId>odl-bgpcep-rsvp-dependencies</artifactId>
15     <version>0.7.4-Carbon</version>
16     <packaging>feature</packaging>
17
18     <name>OpenDaylight :: RSVP :: Dependencies</name>
19
20     <properties>
21         <config.version>0.6.4-Carbon</config.version>
22         <mdsal.binding.base>0.10.4-Carbon</mdsal.binding.base>
23     </properties>
24
25     <dependencyManagement>
26         <dependencies>
27             <!-- ODL-BGP-ARTIFACTS -->
28             <dependency>
29                 <groupId>org.opendaylight.bgpcep</groupId>
30                 <artifactId>bgpcep-artifacts</artifactId>
31                 <version>${project.version}</version>
32                 <type>pom</type>
33                 <scope>import</scope>
34             </dependency>
35             <!-- ODL-CONTROLLER-ARTIFACTS -->
36             <dependency>
37                 <groupId>org.opendaylight.controller</groupId>
38                 <artifactId>config-artifacts</artifactId>
39                 <version>${config.version}</version>
40                 <scope>import</scope>
41                 <type>pom</type>
42             </dependency>
43             <!-- ODL-MD-SAL-ARTIFACTS -->
44             <dependency>
45                 <groupId>org.opendaylight.mdsal.model</groupId>
46                 <artifactId>mdsal-model-artifacts</artifactId>
47                 <version>${mdsal.binding.base}</version>
48                 <type>pom</type>
49                 <scope>import</scope>
50             </dependency>
51         </dependencies>
52     </dependencyManagement>
53
54     <dependencies>
55         <dependency>
56             <groupId>${project.groupId}</groupId>
57             <artifactId>concepts</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>${project.groupId}</groupId>
61             <artifactId>util</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>org.opendaylight.controller</groupId>
65             <artifactId>odl-config-core</artifactId>
66             <type>xml</type>
67             <classifier>features</classifier>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.mdsal.model</groupId>
71             <artifactId>odl-mdsal-models</artifactId>
72             <type>xml</type>
73             <classifier>features</classifier>
74         </dependency>
75         <dependency>
76             <groupId>org.opendaylight.odlparent</groupId>
77             <artifactId>odl4-netty-4</artifactId>
78             <type>xml</type>
79             <classifier>features</classifier>
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>