Bump versions by x.(y+1).z for next dev cycle
[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.9.0-SNAPSHOT</version>
10         <relativePath/>
11     </parent>
12
13     <groupId>org.opendaylight.bgpcep</groupId>
14     <artifactId>odl-bgpcep-rsvp-dependencies</artifactId>
15     <version>0.8.0-SNAPSHOT</version>
16     <packaging>feature</packaging>
17
18     <name>OpenDaylight :: RSVP :: Dependencies</name>
19
20     <properties>
21         <config.version>0.7.0-SNAPSHOT</config.version>
22         <mdsal.binding.base>0.11.0-SNAPSHOT</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>io.netty</groupId>
65             <artifactId>netty-common</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>io.netty</groupId>
69             <artifactId>netty-buffer</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>org.opendaylight.controller</groupId>
73             <artifactId>config-api</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>org.opendaylight.mdsal.model</groupId>
77             <artifactId>odl-mdsal-models</artifactId>
78             <type>xml</type>
79             <classifier>features</classifier>
80             <scope>runtime</scope>
81         </dependency>
82     </dependencies>
83
84     <!--
85         Maven Site Configuration
86
87         The following configuration is necessary for maven-site-plugin to
88         correctly identify the correct deployment path for OpenDaylight Maven
89         sites.
90     -->
91     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
92
93     <distributionManagement>
94         <site>
95             <id>opendaylight-site</id>
96             <url>${nexus.site.url}/${project.artifactId}/</url>
97         </site>
98     </distributionManagement>
99 </project>