355e66996314de442efbe0ef4a84c6f3046ab9f5
[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.18.01-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.18.01-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         <dependency>
59             <groupId>io.fd.honeycomb</groupId>
60             <artifactId>binding-init</artifactId>
61             <version>${project.version}</version>
62         </dependency>
63
64         <!-- BGP translation layer -->
65         <dependency>
66             <groupId>io.fd.honeycomb</groupId>
67             <artifactId>bgp-translate-api</artifactId>
68             <version>${project.version}</version>
69         </dependency>
70         <dependency>
71             <groupId>io.fd.honeycomb</groupId>
72             <artifactId>bgp-translate-impl</artifactId>
73             <version>${project.version}</version>
74         </dependency>
75
76         <!-- ODL BGP -->
77         <dependency>
78             <groupId>org.opendaylight.bgpcep</groupId>
79             <artifactId>bgp-rib-impl</artifactId>
80         </dependency>
81
82         <!-- test dependencies -->
83         <dependency>
84             <groupId>junit</groupId>
85             <artifactId>junit</artifactId>
86             <scope>test</scope>
87         </dependency>
88         <dependency>
89             <groupId>org.mockito</groupId>
90             <artifactId>mockito-core</artifactId>
91             <scope>test</scope>
92         </dependency>
93         <dependency>
94             <groupId>com.google.inject.extensions</groupId>
95             <artifactId>guice-testlib</artifactId>
96             <scope>test</scope>
97         </dependency>
98         <dependency>
99             <groupId>io.fd.honeycomb.northbound.bgp</groupId>
100             <artifactId>extension-common</artifactId>
101             <version>${project.version}</version>
102         </dependency>
103         <dependency>
104             <groupId>org.opendaylight.bgpcep</groupId>
105             <artifactId>rsvp-api</artifactId>
106             <version>${odl.bgpcep.version}</version>
107         </dependency>
108     </dependencies>
109
110 </project>