Release Nitrogen
[bgpcep.git] / features / bgp / odl-bgpcep-bgp-rib-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-bgp-rib-api</artifactId>
13     <version>0.8.3</version>
14     <packaging>feature</packaging>
15
16     <name>OpenDaylight :: BGP :: RIB Api</name>
17
18     <dependencyManagement>
19         <!-- ODL-BGP-ARTIFACTS -->
20         <dependencies>
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>odl-bgpcep-bgp-parser-api</artifactId>
42             <type>xml</type>
43             <classifier>features</classifier>
44         </dependency>
45         <dependency>
46             <groupId>org.opendaylight.controller</groupId>
47             <artifactId>odl-config-netty-config-api</artifactId>
48             <type>xml</type>
49             <classifier>features</classifier>
50         </dependency>
51         <dependency>
52             <groupId>org.opendaylight.controller</groupId>
53             <artifactId>odl-mdsal-broker</artifactId>
54             <type>xml</type>
55             <classifier>features</classifier>
56         </dependency>
57
58         <dependency>
59             <groupId>${project.groupId}</groupId>
60             <artifactId>bgp-rib-api</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>${project.groupId}</groupId>
64             <artifactId>bgp-rib-spi</artifactId>
65         </dependency>
66     </dependencies>
67
68     <!--
69         Maven Site Configuration
70
71         The following configuration is necessary for maven-site-plugin to
72         correctly identify the correct deployment path for OpenDaylight Maven
73         sites.
74     -->
75     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
76
77     <distributionManagement>
78         <site>
79             <id>opendaylight-site</id>
80             <url>${nexus.site.url}/${project.artifactId}/</url>
81         </site>
82     </distributionManagement>
83 </project>