HONEYCOMB-374: move BGP to minimal-distribution
[honeycomb.git] / infra / northbound / bgp / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright (c) 2017 Cisco and/or its affiliates.
4   ~
5   ~ Licensed under the Apache License, Version 2.0 (the "License");
6   ~ you may not use this file except in compliance with the License.
7   ~ You may obtain a copy of the License at:
8   ~
9   ~     http://www.apache.org/licenses/LICENSE-2.0
10   ~
11   ~ Unless required by applicable law or agreed to in writing, software
12   ~ distributed under the License is distributed on an "AS IS" BASIS,
13   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   ~ See the License for the specific language governing permissions and
15   ~ limitations under the License.
16   -->
17 <project xmlns="http://maven.apache.org/POM/4.0.0"
18          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20
21     <parent>
22         <artifactId>impl-parent</artifactId>
23         <groupId>io.fd.honeycomb.common</groupId>
24         <version>1.17.07-SNAPSHOT</version>
25         <relativePath>../../../common/impl-parent</relativePath>
26     </parent>
27
28     <modelVersion>4.0.0</modelVersion>
29
30     <groupId>io.fd.honeycomb.northbound</groupId>
31     <artifactId>bgp</artifactId>
32     <version>1.17.07-SNAPSHOT</version>
33
34     <dependencies>
35         <!-- Common northbound configuration -->
36         <dependency>
37             <groupId>io.fd.honeycomb.northbound</groupId>
38             <artifactId>common</artifactId>
39             <version>${project.version}</version>
40         </dependency>
41
42         <!-- Common HC infra utils -->
43         <dependency>
44             <groupId>io.fd.honeycomb</groupId>
45             <artifactId>minimal-distribution-core</artifactId>
46             <version>${project.version}</version>
47         </dependency>
48
49         <!-- DI-->
50         <dependency>
51             <groupId>com.google.inject</groupId>
52             <artifactId>guice</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>net.jmob</groupId>
56             <artifactId>guice.conf</artifactId>
57         </dependency>
58
59         <!-- BGP translation layer -->
60         <dependency>
61             <groupId>io.fd.honeycomb</groupId>
62             <artifactId>bgp-translate-api</artifactId>
63             <version>${project.version}</version>
64         </dependency>
65         <dependency>
66             <groupId>io.fd.honeycomb</groupId>
67             <artifactId>bgp-translate-impl</artifactId>
68             <version>${project.version}</version>
69         </dependency>
70
71         <!-- ODL BGP -->
72         <dependency>
73             <groupId>org.opendaylight.bgpcep</groupId>
74             <artifactId>bgp-rib-impl</artifactId>
75             <!-- TODO remove exclusion after bumping to Boron-SR4 -->
76             <exclusions>
77                 <exclusion>
78                     <groupId>org.powermock</groupId>
79                     <artifactId>powermock</artifactId>
80                 </exclusion>
81             </exclusions>
82         </dependency>
83         <dependency>
84             <groupId>org.opendaylight.bgpcep</groupId>
85             <artifactId>bgp-openconfig-impl</artifactId>
86         </dependency>
87
88         <!-- ODL BGP extensions -->
89         <dependency>
90             <groupId>org.opendaylight.bgpcep</groupId>
91             <artifactId>bgp-evpn</artifactId>
92         </dependency>
93         <dependency>
94             <groupId>org.opendaylight.bgpcep</groupId>
95             <artifactId>bgp-inet</artifactId>
96         </dependency>
97         <dependency>
98             <groupId>org.opendaylight.bgpcep</groupId>
99             <artifactId>bgp-labeled-unicast</artifactId>
100         </dependency>
101         <dependency>
102             <groupId>org.opendaylight.bgpcep</groupId>
103             <artifactId>bgp-linkstate</artifactId>
104         </dependency>
105         <dependency>
106             <groupId>org.opendaylight.bgpcep</groupId>
107             <artifactId>bgp-l3vpn</artifactId>
108         </dependency>
109     </dependencies>
110
111 </project>