Release Carbon
[bgpcep.git] / features / bgp / odl-bgpcep-bgp-path-selection-mode / 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.0-Carbon</version>
10         <relativePath/>
11     </parent>
12
13     <groupId>org.opendaylight.bgpcep</groupId>
14     <artifactId>odl-bgpcep-bgp-path-selection-mode</artifactId>
15     <version>0.7.0-Carbon</version>
16     <packaging>feature</packaging>
17
18     <name>OpenDaylight :: BGP :: Path Selection</name>
19
20     <properties>
21         <config.version>0.6.0-Carbon</config.version>
22     </properties>
23
24     <dependencyManagement>
25         <dependencies>
26             <!-- ODL-BGP-ARTIFACTS -->
27             <dependency>
28                 <groupId>org.opendaylight.bgpcep</groupId>
29                 <artifactId>bgpcep-artifacts</artifactId>
30                 <version>${project.version}</version>
31                 <type>pom</type>
32                 <scope>import</scope>
33             </dependency>
34             <!-- ODL-CONTROLLER-ARTIFACTS -->
35             <dependency>
36                 <groupId>org.opendaylight.controller</groupId>
37                 <artifactId>config-artifacts</artifactId>
38                 <version>${config.version}</version>
39                 <scope>import</scope>
40                 <type>pom</type>
41             </dependency>
42         </dependencies>
43     </dependencyManagement>
44
45     <dependencies>
46         <dependency>
47             <groupId>${project.groupId}</groupId>
48             <artifactId>bgp-parser-api</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>${project.groupId}</groupId>
52             <artifactId>bgp-path-selection-mode</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>${project.groupId}</groupId>
56             <artifactId>odl-bgpcep-bgp-dependencies</artifactId>
57             <type>xml</type>
58             <classifier>features</classifier>
59         </dependency>
60         <dependency>
61             <groupId>${project.groupId}</groupId>
62             <artifactId>odl-bgpcep-bgp-rib-api</artifactId>
63             <type>xml</type>
64             <classifier>features</classifier>
65         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.controller</groupId>
68             <artifactId>odl-config-api</artifactId>
69             <type>xml</type>
70             <classifier>features</classifier>
71         </dependency>
72     </dependencies>
73
74     <!--
75         Maven Site Configuration
76
77         The following configuration is necessary for maven-site-plugin to
78         correctly identify the correct deployment path for OpenDaylight Maven
79         sites.
80     -->
81     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
82
83     <distributionManagement>
84         <site>
85             <id>opendaylight-site</id>
86             <url>${nexus.site.url}/${project.artifactId}/</url>
87         </site>
88     </distributionManagement>
89 </project>