BUG-7510: BGP features migration to karaf 4
[bgpcep.git] / features / bgp / odl-bgpcep-bgp-linkstate / 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-SNAPSHOT</version>
10         <relativePath/>
11     </parent>
12
13     <groupId>org.opendaylight.bgpcep</groupId>
14     <artifactId>odl-bgpcep-bgp-linkstate</artifactId>
15     <version>0.7.0-SNAPSHOT</version>
16     <packaging>feature</packaging>
17
18     <name>OpenDaylight :: BGP :: RIB Linkstate</name>
19
20     <dependencyManagement>
21         <!-- ODL-BGP-ARTIFACTS -->
22         <dependencies>
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         </dependencies>
31     </dependencyManagement>
32
33     <dependencies>
34         <dependency>
35             <groupId>${project.groupId}</groupId>
36             <artifactId>bgp-bmp-api</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>${project.groupId}</groupId>
40             <artifactId>bgp-linkstate</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>${project.groupId}</groupId>
44             <artifactId>odl-bgpcep-bgp-parser</artifactId>
45             <type>xml</type>
46             <classifier>features</classifier>
47             <scope>runtime</scope>
48         </dependency>
49         <dependency>
50             <groupId>${project.groupId}</groupId>
51             <artifactId>odl-bgpcep-bgp-rib-api</artifactId>
52             <type>xml</type>
53             <classifier>features</classifier>
54             <scope>runtime</scope>
55         </dependency>
56         <dependency>
57             <groupId>${project.groupId}</groupId>
58             <artifactId>odl-bgpcep-rsvp</artifactId>
59             <type>xml</type>
60             <classifier>features</classifier>
61             <scope>runtime</scope>
62         </dependency>
63         <dependency>
64             <groupId>${project.groupId}</groupId>
65             <artifactId>odl-bgpcep-bgp-openconfig</artifactId>
66             <type>xml</type>
67             <classifier>features</classifier>
68             <scope>runtime</scope>
69         </dependency>
70     </dependencies>
71
72     <!--
73         Maven Site Configuration
74
75         The following configuration is necessary for maven-site-plugin to
76         correctly identify the correct deployment path for OpenDaylight Maven
77         sites.
78     -->
79     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
80
81     <distributionManagement>
82         <site>
83             <id>opendaylight-site</id>
84             <url>${nexus.site.url}/${project.artifactId}/</url>
85         </site>
86     </distributionManagement>
87 </project>