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