Release Nitrogen
[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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3     <modelVersion>4.0.0</modelVersion>
4     <parent>
5         <groupId>org.opendaylight.odlparent</groupId>
6         <artifactId>single-feature-parent</artifactId>
7         <version>2.0.7</version>
8         <relativePath/>
9     </parent>
10
11     <groupId>org.opendaylight.bgpcep</groupId>
12     <artifactId>odl-bgpcep-pcep-api</artifactId>
13     <version>0.8.3</version>
14     <packaging>feature</packaging>
15
16     <name>OpenDaylight :: PCEP :: Api</name>
17
18     <dependencyManagement>
19         <dependencies>
20             <!-- ODL-BGP-ARTIFACTS -->
21             <dependency>
22                 <groupId>org.opendaylight.bgpcep</groupId>
23                 <artifactId>bgpcep-artifacts</artifactId>
24                 <version>${project.version}</version>
25                 <type>pom</type>
26                 <scope>import</scope>
27             </dependency>
28             <dependency>
29                 <groupId>org.opendaylight.bgpcep</groupId>
30                 <artifactId>dependency-version-management</artifactId>
31                 <version>${project.version}</version>
32                 <type>pom</type>
33                 <scope>import</scope>
34             </dependency>
35         </dependencies>
36     </dependencyManagement>
37
38     <dependencies>
39         <dependency>
40             <groupId>${project.groupId}</groupId>
41             <artifactId>pcep-api</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>${project.groupId}</groupId>
45             <artifactId>pcep-spi</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>${project.groupId}</groupId>
49             <artifactId>odl-bgpcep-pcep-dependencies</artifactId>
50             <type>xml</type>
51             <classifier>features</classifier>
52         </dependency>
53         <dependency>
54             <groupId>org.opendaylight.controller</groupId>
55             <artifactId>odl-config-netty-config-api</artifactId>
56             <type>xml</type>
57             <classifier>features</classifier>
58         </dependency>
59         <dependency>
60             <groupId>org.opendaylight.controller</groupId>
61             <artifactId>odl-config-netty</artifactId>
62             <type>xml</type>
63             <classifier>features</classifier>
64         </dependency>
65         <dependency>
66             <groupId>${project.groupId}</groupId>
67             <artifactId>pcep-controller-config</artifactId>
68             <type>xml</type>
69             <classifier>config</classifier>
70         </dependency>
71         <dependency>
72             <groupId>org.opendaylight.controller</groupId>
73             <artifactId>odl-mdsal-broker</artifactId>
74             <type>xml</type>
75             <classifier>features</classifier>
76         </dependency>
77         <dependency>
78             <groupId>${project.groupId}</groupId>
79             <artifactId>odl-bgpcep-rsvp-api</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>