Bump versions by x.(y+1).z for next dev cycle
[bgpcep.git] / features / pcep / odl-bgpcep-programming-impl / 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-programming-impl</artifactId>
15     <version>0.8.0-SNAPSHOT</version>
16     <packaging>feature</packaging>
17
18     <name>OpenDaylight :: PCEP :: Programming Impl</name>
19
20     <properties>
21         <controller.mdsal.version>1.6.0-SNAPSHOT</controller.mdsal.version>
22     </properties>
23
24     <dependencyManagement>
25         <dependencies>
26             <!-- ODL-BGP-ARTIFACTS -->
27             <dependency>
28                 <groupId>org.opendaylight.bgpcep</groupId>
29                 <artifactId>bgpcep-artifacts</artifactId>
30                 <version>${project.version}</version>
31                 <type>pom</type>
32                 <scope>import</scope>
33             </dependency>
34             <!-- ODL-CONTROLLER-ARTIFACTS -->
35             <dependency>
36                 <groupId>org.opendaylight.controller</groupId>
37                 <artifactId>mdsal-artifacts</artifactId>
38                 <version>${controller.mdsal.version}</version>
39                 <scope>import</scope>
40                 <type>pom</type>
41             </dependency>
42         </dependencies>
43     </dependencyManagement>
44
45     <dependencies>
46         <dependency>
47             <groupId>${project.groupId}</groupId>
48             <artifactId>programming-impl</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>${project.groupId}</groupId>
52             <artifactId>odl-bgpcep-programming-api</artifactId>
53             <type>xml</type>
54             <classifier>features</classifier>
55             <scope>runtime</scope>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.controller</groupId>
59             <artifactId>odl-mdsal-broker</artifactId>
60             <type>xml</type>
61             <classifier>features</classifier>
62             <scope>runtime</scope>
63         </dependency>
64         <dependency>
65             <groupId>${project.groupId}</groupId>
66             <artifactId>programming-controller-config</artifactId>
67             <type>xml</type>
68             <classifier>config</classifier>
69             <scope>runtime</scope>
70         </dependency>
71     </dependencies>
72     <!--
73     Maven Site Configuration
74
75     The following configuration is necessary for maven-site-plugin to
76     correctly identify the correct deployment path for OpenDaylight Maven
77     sites.
78     -->
79     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
80
81     <distributionManagement>
82         <site>
83             <id>opendaylight-site</id>
84             <url>${nexus.site.url}/${project.artifactId}/</url>
85         </site>
86     </distributionManagement>
87 </project>