Release Nitrogen
[bgpcep.git] / features / bgp / odl-bgpcep-bgp-rib-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>2.0.4</version>
10         <relativePath/>
11     </parent>
12
13     <groupId>org.opendaylight.bgpcep</groupId>
14     <artifactId>odl-bgpcep-bgp-rib-impl</artifactId>
15     <version>0.8.0</version>
16     <packaging>feature</packaging>
17
18     <name>OpenDaylight :: BGP :: RIB Impl</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>bgp-openconfig-api</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>${project.groupId}</groupId>
47             <artifactId>bgp-openconfig-spi</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>${project.groupId}</groupId>
51             <artifactId>bgp-rib-impl</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>${project.groupId}</groupId>
55             <artifactId>bgp-peer-acceptor</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>${project.groupId}</groupId>
59             <artifactId>odl-bgpcep-bgp-dependencies</artifactId>
60             <type>xml</type>
61             <classifier>features</classifier>
62         </dependency>
63         <dependency>
64             <groupId>${project.groupId}</groupId>
65             <artifactId>odl-bgpcep-bgp-rib-api</artifactId>
66             <type>xml</type>
67             <classifier>features</classifier>
68         </dependency>
69         <dependency>
70             <groupId>${project.groupId}</groupId>
71             <artifactId>odl-bgpcep-bgp-inet</artifactId>
72             <type>xml</type>
73             <classifier>features</classifier>
74         </dependency>
75         <dependency>
76             <groupId>${project.groupId}</groupId>
77             <artifactId>odl-bgpcep-bgp-path-selection-mode</artifactId>
78             <type>xml</type>
79             <classifier>features</classifier>
80         </dependency>
81         <dependency>
82             <groupId>${project.groupId}</groupId>
83             <artifactId>odl-bgpcep-bgp-config-loader</artifactId>
84             <type>xml</type>
85             <classifier>features</classifier>
86         </dependency>
87         <dependency>
88             <groupId>org.opendaylight.controller</groupId>
89             <artifactId>odl-mdsal-broker</artifactId>
90             <type>xml</type>
91             <classifier>features</classifier>
92         </dependency>
93     </dependencies>
94
95     <!--
96         Maven Site Configuration
97
98         The following configuration is necessary for maven-site-plugin to
99         correctly identify the correct deployment path for OpenDaylight Maven
100         sites.
101     -->
102     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
103
104     <distributionManagement>
105         <site>
106             <id>opendaylight-site</id>
107             <url>${nexus.site.url}/${project.artifactId}/</url>
108         </site>
109     </distributionManagement>
110 </project>