Release Nitrogen
[bgpcep.git] / features / bgp / features-bgp / 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>feature-repo-parent</artifactId>
7         <version>2.0.7</version>
8         <relativePath/>
9     </parent>
10     
11     <groupId>org.opendaylight.bgpcep</groupId>
12     <artifactId>features-bgp</artifactId>
13     <version>0.8.3</version>
14     <packaging>feature</packaging>
15
16     <dependencyManagement>
17         <!-- ODL-BGP-ARTIFACTS -->
18         <dependencies>
19             <dependency>
20                 <groupId>org.opendaylight.bgpcep</groupId>
21                 <artifactId>bgpcep-artifacts</artifactId>
22                 <version>${project.version}</version>
23                 <type>pom</type>
24                 <scope>import</scope>
25             </dependency>
26         </dependencies>
27     </dependencyManagement>
28
29     <dependencies>
30         <dependency>
31             <groupId>${project.groupId}</groupId>
32             <artifactId>odl-bgpcep-bgp</artifactId>
33             <type>xml</type>
34             <classifier>features</classifier>
35         </dependency>
36         <dependency>
37             <groupId>${project.groupId}</groupId>
38             <artifactId>odl-bgpcep-config-files</artifactId>
39             <type>xml</type>
40             <classifier>features</classifier>
41         </dependency>
42         <dependency>
43             <groupId>${project.groupId}</groupId>
44             <artifactId>odl-bgpcep-bgp-openconfig</artifactId>
45             <type>xml</type>
46             <classifier>features</classifier>
47         </dependency>
48         <dependency>
49             <groupId>${project.groupId}</groupId>
50             <artifactId>odl-bgpcep-bgp-dependencies</artifactId>
51             <type>xml</type>
52             <classifier>features</classifier>
53         </dependency>
54         <dependency>
55             <groupId>${project.groupId}</groupId>
56             <artifactId>odl-bgpcep-bgp-inet</artifactId>
57             <type>xml</type>
58             <classifier>features</classifier>
59         </dependency>
60         <dependency>
61             <groupId>${project.groupId}</groupId>
62             <artifactId>odl-bgpcep-bgp-parser</artifactId>
63             <type>xml</type>
64             <classifier>features</classifier>
65         </dependency>
66         <dependency>
67             <groupId>${project.groupId}</groupId>
68             <artifactId>odl-bgpcep-bgp-parser-api</artifactId>
69             <type>xml</type>
70             <classifier>features</classifier>
71         </dependency>
72         <dependency>
73             <groupId>${project.groupId}</groupId>
74             <artifactId>odl-bgpcep-bgp-rib-api</artifactId>
75             <type>xml</type>
76             <classifier>features</classifier>
77         </dependency>
78         <dependency>
79             <groupId>${project.groupId}</groupId>
80             <artifactId>odl-bgpcep-bgp-linkstate</artifactId>
81             <type>xml</type>
82             <classifier>features</classifier>
83         </dependency>
84         <dependency>
85             <groupId>${project.groupId}</groupId>
86             <artifactId>odl-bgpcep-bgp-flowspec</artifactId>
87             <type>xml</type>
88             <classifier>features</classifier>
89         </dependency>
90         <dependency>
91             <groupId>${project.groupId}</groupId>
92             <artifactId>odl-bgpcep-bgp-labeled-unicast</artifactId>
93             <type>xml</type>
94             <classifier>features</classifier>
95         </dependency>
96         <dependency>
97             <groupId>${project.groupId}</groupId>
98             <artifactId>odl-bgpcep-bgp-l3vpn</artifactId>
99             <type>xml</type>
100             <classifier>features</classifier>
101         </dependency>
102         <dependency>
103             <groupId>${project.groupId}</groupId>
104             <artifactId>odl-bgpcep-bgp-evpn</artifactId>
105             <type>xml</type>
106             <classifier>features</classifier>
107         </dependency>
108         <dependency>
109             <groupId>${project.groupId}</groupId>
110             <artifactId>odl-bgpcep-bgp-path-selection-mode</artifactId>
111             <type>xml</type>
112             <classifier>features</classifier>
113         </dependency>
114         <dependency>
115             <groupId>${project.groupId}</groupId>
116             <artifactId>odl-bgpcep-bgp-rib-impl</artifactId>
117             <type>xml</type>
118             <classifier>features</classifier>
119         </dependency>
120         <dependency>
121             <groupId>${project.groupId}</groupId>
122             <artifactId>odl-bgpcep-bgp-topology</artifactId>
123             <type>xml</type>
124             <classifier>features</classifier>
125         </dependency>
126         <dependency>
127             <groupId>${project.groupId}</groupId>
128             <artifactId>odl-bgpcep-bgp-benchmark</artifactId>
129             <type>xml</type>
130             <classifier>features</classifier>
131         </dependency>
132         <dependency>
133             <groupId>${project.groupId}</groupId>
134             <artifactId>odl-bgpcep-bgp-cli</artifactId>
135             <type>xml</type>
136             <classifier>features</classifier>
137         </dependency>
138         <dependency>
139             <groupId>${project.groupId}</groupId>
140             <artifactId>odl-bgpcep-bgp-config-loader</artifactId>
141             <type>xml</type>
142             <classifier>features</classifier>
143         </dependency>
144         <dependency>
145             <groupId>${project.groupId}</groupId>
146             <artifactId>odl-bgpcep-bgp-openconfig-state</artifactId>
147             <type>xml</type>
148             <classifier>features</classifier>
149         </dependency>
150     </dependencies>
151
152     <!--
153         Maven Site Configuration
154
155         The following configuration is necessary for maven-site-plugin to
156         correctly identify the correct deployment path for OpenDaylight Maven
157         sites.
158     -->
159     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
160
161     <distributionManagement>
162         <site>
163             <id>opendaylight-site</id>
164             <url>${nexus.site.url}/${project.artifactId}/</url>
165         </site>
166     </distributionManagement>
167 </project>