Enforce fail on maven-dependency-plugin warning
[bgpcep.git] / bgp / mvpn / 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 <project xmlns="http://maven.apache.org/POM/4.0.0"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12     <modelVersion>4.0.0</modelVersion>
13     <parent>
14         <groupId>org.opendaylight.bgpcep</groupId>
15         <artifactId>binding-parent</artifactId>
16         <version>0.10.0-SNAPSHOT</version>
17         <relativePath>../../binding-parent</relativePath>
18     </parent>
19
20     <artifactId>bgp-mvpn</artifactId>
21     <packaging>bundle</packaging>
22     <description>BGP MPVN IPv4/6 Support</description>
23     <name>${project.artifactId}</name>
24
25     <dependencies>
26         <dependency>
27             <groupId>${project.groupId}</groupId>
28             <artifactId>bgp-parser-api</artifactId>
29         </dependency>
30         <dependency>
31             <groupId>${project.groupId}</groupId>
32             <artifactId>bgp-parser-spi</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>${project.groupId}</groupId>
36             <artifactId>bgp-inet</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>${project.groupId}</groupId>
40             <artifactId>bgp-bmp-api</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>${project.groupId}</groupId>
44             <artifactId>util</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>${project.groupId}</groupId>
48             <artifactId>bgp-concepts</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>${project.groupId}</groupId>
52             <artifactId>concepts</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>${project.groupId}</groupId>
56             <artifactId>bgp-rib-api</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>${project.groupId}</groupId>
60             <artifactId>bgp-rib-spi</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>${project.groupId}</groupId>
64             <artifactId>bgp-openconfig-api</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>${project.groupId}</groupId>
68             <artifactId>bgp-openconfig-spi</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.opendaylight.controller</groupId>
72             <artifactId>sal-core-api</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>org.opendaylight.mdsal.model</groupId>
76             <artifactId>ietf-inet-types-2013-07-15</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>org.opendaylight.mdsal.model</groupId>
80             <artifactId>ietf-yang-types-20130715</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>org.opendaylight.mdsal.model</groupId>
84             <artifactId>yang-ext</artifactId>
85         </dependency>
86         <dependency>
87             <groupId>org.opendaylight.mdsal</groupId>
88             <artifactId>yang-binding</artifactId>
89         </dependency>
90         <dependency>
91             <groupId>org.opendaylight.mdsal</groupId>
92             <artifactId>mdsal-binding-dom-codec</artifactId>
93         </dependency>
94         <dependency>
95             <groupId>org.opendaylight.yangtools</groupId>
96             <artifactId>yang-common</artifactId>
97         </dependency>
98         <dependency>
99             <groupId>org.opendaylight.yangtools</groupId>
100             <artifactId>concepts</artifactId>
101         </dependency>
102         <dependency>
103             <groupId>org.opendaylight.yangtools</groupId>
104             <artifactId>yang-data-api</artifactId>
105         </dependency>
106         <dependency>
107             <groupId>io.netty</groupId>
108             <artifactId>netty-buffer</artifactId>
109         </dependency>
110         <dependency>
111             <groupId>com.google.guava</groupId>
112             <artifactId>guava</artifactId>
113         </dependency>
114         <!-- test scope dependencies -->
115         <dependency>
116             <groupId>${project.groupId}</groupId>
117             <artifactId>bgp-rib-spi</artifactId>
118             <type>test-jar</type>
119             <scope>test</scope>
120         </dependency>
121         <dependency>
122             <groupId>${project.groupId}</groupId>
123             <artifactId>bgp-parser-impl</artifactId>
124             <scope>test</scope>
125         </dependency>
126         <dependency>
127             <groupId>org.opendaylight.yangtools</groupId>
128             <artifactId>mockito-configuration</artifactId>
129             <scope>test</scope>
130         </dependency>
131         <dependency>
132             <groupId>org.opendaylight.mdsal</groupId>
133             <artifactId>mdsal-binding-dom-adapter</artifactId>
134             <scope>test</scope>
135         </dependency>
136         <dependency>
137             <groupId>org.opendaylight.controller</groupId>
138             <artifactId>sal-binding-broker-impl</artifactId>
139             <scope>test</scope>
140         </dependency>
141         <dependency>
142             <groupId>org.opendaylight.controller</groupId>
143             <artifactId>sal-binding-broker-impl</artifactId>
144             <scope>test</scope>
145             <type>test-jar</type>
146         </dependency>
147     </dependencies>
148
149     <scm>
150         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
151         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
152         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
153         <tag>HEAD</tag>
154     </scm>
155 </project>