Honeycomb 1.19.04-RC2
[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.19.04-RC2</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.19.04-RC2</version>
33     <name>${project.artifactId}</name>
34
35     <dependencies>
36         <!-- Common northbound configuration -->
37         <dependency>
38             <groupId>io.fd.honeycomb.northbound</groupId>
39             <artifactId>common</artifactId>
40             <version>${project.version}</version>
41         </dependency>
42
43         <!-- Common HC infra utils -->
44         <dependency>
45             <groupId>io.fd.honeycomb</groupId>
46             <artifactId>minimal-distribution-core</artifactId>
47             <version>${project.version}</version>
48         </dependency>
49
50         <!-- DI-->
51         <dependency>
52             <groupId>com.google.inject</groupId>
53             <artifactId>guice</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>net.jmob</groupId>
57             <artifactId>guice.conf</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>io.fd.honeycomb</groupId>
61             <artifactId>binding-init</artifactId>
62             <version>${project.version}</version>
63         </dependency>
64
65         <!-- BGP translation layer -->
66         <dependency>
67             <groupId>io.fd.honeycomb</groupId>
68             <artifactId>bgp-translate-api</artifactId>
69             <version>${project.version}</version>
70         </dependency>
71         <dependency>
72             <groupId>io.fd.honeycomb</groupId>
73             <artifactId>bgp-translate-impl</artifactId>
74             <version>${project.version}</version>
75         </dependency>
76
77         <!-- ODL BGP -->
78         <dependency>
79             <groupId>org.opendaylight.bgpcep</groupId>
80             <artifactId>bgp-rib-impl</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>org.opendaylight.bgpcep</groupId>
84             <artifactId>bgp-openconfig-rp-impl</artifactId>
85             <version>${odl.bgpcep.version}</version>
86         </dependency>
87
88         <!-- test dependencies -->
89         <dependency>
90             <groupId>junit</groupId>
91             <artifactId>junit</artifactId>
92             <scope>test</scope>
93         </dependency>
94         <dependency>
95             <groupId>org.mockito</groupId>
96             <artifactId>mockito-core</artifactId>
97             <scope>test</scope>
98         </dependency>
99         <dependency>
100             <groupId>com.google.inject.extensions</groupId>
101             <artifactId>guice-testlib</artifactId>
102             <scope>test</scope>
103         </dependency>
104         <dependency>
105             <groupId>io.fd.honeycomb.northbound.bgp</groupId>
106             <artifactId>extension-common</artifactId>
107             <version>${project.version}</version>
108         </dependency>
109         <dependency>
110             <groupId>org.opendaylight.bgpcep</groupId>
111             <artifactId>rsvp-api</artifactId>
112             <version>${odl.bgpcep.version}</version>
113         </dependency>
114     </dependencies>
115
116 </project>