Release Sodium
[bgpcep.git] / bgp / extensions / parent / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
4   ~
5   ~ This program and the accompanying materials are made available under the
6   ~ terms of the Eclipse Public License v1.0 which accompanies this distribution,
7   ~ and is available at http://www.eclipse.org/legal/epl-v10.html
8   -->
9
10 <project xmlns="http://maven.apache.org/POM/4.0.0"
11          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
13     <modelVersion>4.0.0</modelVersion>
14     <parent>
15         <groupId>org.opendaylight.bgpcep</groupId>
16         <artifactId>binding-parent</artifactId>
17         <version>0.12.3</version>
18         <relativePath>../../../binding-parent</relativePath>
19     </parent>
20
21     <artifactId>bgp-extension-parent</artifactId>
22     <version>0.12.3</version>
23     <packaging>pom</packaging>
24     <description>BGP Extensions Parent</description>
25     <name>${project.artifactId}</name>
26
27     <dependencies>
28         <dependency>
29             <groupId>${project.groupId}</groupId>
30             <artifactId>bgp-parser-api</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>${project.groupId}</groupId>
34             <artifactId>bgp-parser-spi</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>${project.groupId}</groupId>
38             <artifactId>bgp-rib-api</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>${project.groupId}</groupId>
42             <artifactId>bgp-rib-spi</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>${project.groupId}</groupId>
46             <artifactId>bgp-openconfig-api</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>${project.groupId}</groupId>
50             <artifactId>bgp-openconfig-spi</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>${project.groupId}</groupId>
54             <artifactId>bgp-bmp-api</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>${project.groupId}</groupId>
58             <artifactId>bgp-concepts</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>${project.groupId}</groupId>
62             <artifactId>util</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>org.opendaylight.yangtools</groupId>
66             <artifactId>concepts</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>org.opendaylight.yangtools</groupId>
70             <artifactId>yang-common</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>org.opendaylight.yangtools</groupId>
74             <artifactId>yang-data-api</artifactId>
75         </dependency>
76         <dependency>
77             <groupId>org.opendaylight.mdsal</groupId>
78             <artifactId>mdsal-binding-dom-codec</artifactId>
79         </dependency>
80         <dependency>
81             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
82             <artifactId>rfc6991-ietf-inet-types</artifactId>
83         </dependency>
84         <dependency>
85             <groupId>org.opendaylight.mdsal</groupId>
86             <artifactId>mdsal-dom-api</artifactId>
87         </dependency>
88         <dependency>
89             <groupId>io.netty</groupId>
90             <artifactId>netty-buffer</artifactId>
91         </dependency>
92         <dependency>
93             <groupId>com.google.guava</groupId>
94             <artifactId>guava</artifactId>
95         </dependency>
96         <!-- test scope dependencies -->
97         <dependency>
98             <groupId>${project.groupId}</groupId>
99             <artifactId>bgp-rib-spi</artifactId>
100             <type>test-jar</type>
101             <scope>test</scope>
102         </dependency>
103         <dependency>
104             <groupId>org.opendaylight.mdsal</groupId>
105             <artifactId>mdsal-binding-dom-adapter</artifactId>
106             <scope>test</scope>
107         </dependency>
108         <dependency>
109             <groupId>org.opendaylight.mdsal</groupId>
110             <artifactId>mdsal-binding-dom-adapter</artifactId>
111             <scope>test</scope>
112             <type>test-jar</type>
113         </dependency>
114     </dependencies>
115 </project>