Release Carbon
[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>1.8.1-Carbon</version>
10         <relativePath/>
11     </parent>
12
13     <groupId>org.opendaylight.bgpcep</groupId>
14     <artifactId>odl-bgpcep-bgp-rib-impl</artifactId>
15     <version>0.7.1-Carbon</version>
16     <packaging>feature</packaging>
17
18     <name>OpenDaylight :: BGP :: RIB Impl</name>
19
20     <properties>
21         <config.version>0.6.1-Carbon</config.version>
22         <controller.mdsal.version>1.5.1-Carbon</controller.mdsal.version>
23     </properties>
24
25     <dependencyManagement>
26         <dependencies>
27             <!-- ODL-BGP-ARTIFACTS -->
28             <dependency>
29                 <groupId>org.opendaylight.bgpcep</groupId>
30                 <artifactId>bgpcep-artifacts</artifactId>
31                 <version>${project.version}</version>
32                 <type>pom</type>
33                 <scope>import</scope>
34             </dependency>
35             <!-- ODL-CONTROLLER-ARTIFACTS -->
36             <dependency>
37                 <groupId>org.opendaylight.controller</groupId>
38                 <artifactId>config-artifacts</artifactId>
39                 <version>${config.version}</version>
40                 <scope>import</scope>
41                 <type>pom</type>
42             </dependency>
43             <dependency>
44                 <groupId>org.opendaylight.controller</groupId>
45                 <artifactId>mdsal-artifacts</artifactId>
46                 <version>${controller.mdsal.version}</version>
47                 <scope>import</scope>
48                 <type>pom</type>
49             </dependency>
50         </dependencies>
51     </dependencyManagement>
52
53     <dependencies>
54         <dependency>
55             <groupId>${project.groupId}</groupId>
56             <artifactId>bgp-openconfig-api</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>${project.groupId}</groupId>
60             <artifactId>bgp-openconfig-spi</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>${project.groupId}</groupId>
64             <artifactId>bgp-rib-impl</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>${project.groupId}</groupId>
68             <artifactId>bgp-peer-acceptor</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>${project.groupId}</groupId>
72             <artifactId>odl-bgpcep-bgp-dependencies</artifactId>
73             <type>xml</type>
74             <classifier>features</classifier>
75         </dependency>
76         <dependency>
77             <groupId>${project.groupId}</groupId>
78             <artifactId>odl-bgpcep-bgp-rib-api</artifactId>
79             <type>xml</type>
80             <classifier>features</classifier>
81         </dependency>
82         <dependency>
83             <groupId>${project.groupId}</groupId>
84             <artifactId>odl-bgpcep-bgp-inet</artifactId>
85             <type>xml</type>
86             <classifier>features</classifier>
87         </dependency>
88         <dependency>
89             <groupId>${project.groupId}</groupId>
90             <artifactId>odl-bgpcep-bgp-path-selection-mode</artifactId>
91             <type>xml</type>
92             <classifier>features</classifier>
93         </dependency>
94         <dependency>
95             <groupId>${project.groupId}</groupId>
96             <artifactId>odl-bgpcep-bgp-config-loader</artifactId>
97             <type>xml</type>
98             <classifier>features</classifier>
99         </dependency>
100         <dependency>
101             <groupId>org.opendaylight.controller</groupId>
102             <artifactId>odl-mdsal-broker</artifactId>
103             <type>xml</type>
104             <classifier>features</classifier>
105         </dependency>
106     </dependencies>
107
108     <!--
109         Maven Site Configuration
110
111         The following configuration is necessary for maven-site-plugin to
112         correctly identify the correct deployment path for OpenDaylight Maven
113         sites.
114     -->
115     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
116
117     <distributionManagement>
118         <site>
119             <id>opendaylight-site</id>
120             <url>${nexus.site.url}/${project.artifactId}/</url>
121         </site>
122     </distributionManagement>
123 </project>