Bump upstreams
[bgpcep.git] / bgp / extensions / 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:xsi="http://www.w3.org/2001/XMLSchema-instance"
10          xmlns="http://maven.apache.org/POM/4.0.0"
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>bgp-extension-parent</artifactId>
16         <version>0.21.0-SNAPSHOT</version>
17         <relativePath>../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>com.github.spotbugs</groupId>
28             <artifactId>spotbugs-annotations</artifactId>
29             <optional>true</optional>
30         </dependency>
31         <dependency>
32             <groupId>com.guicedee.services</groupId>
33             <artifactId>javax.inject</artifactId>
34             <optional>true</optional>
35         </dependency>
36         <dependency>
37             <groupId>org.kohsuke.metainf-services</groupId>
38             <artifactId>metainf-services</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>${project.groupId}</groupId>
42             <artifactId>bgp-inet</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>${project.groupId}</groupId>
46             <artifactId>concepts</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
50             <artifactId>rfc6991-ietf-yang-types</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>org.opendaylight.mdsal.model</groupId>
54             <artifactId>yang-ext</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>org.opendaylight.yangtools</groupId>
58             <artifactId>util</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>org.opendaylight.yangtools</groupId>
62             <artifactId>yang-common-netty</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>org.osgi</groupId>
66             <artifactId>org.osgi.service.component.annotations</artifactId>
67         </dependency>
68
69         <!-- test scope dependencies -->
70         <dependency>
71             <groupId>${project.groupId}</groupId>
72             <artifactId>bgp-parser-impl</artifactId>
73             <scope>test</scope>
74         </dependency>
75         <dependency>
76             <groupId>org.opendaylight.yangtools</groupId>
77             <artifactId>mockito-configuration</artifactId>
78             <scope>test</scope>
79         </dependency>
80     </dependencies>
81
82     <scm>
83         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
84         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
85         <url>https://wiki.opendaylight.org/display/ODL/BGPCEP</url>
86         <tag>HEAD</tag>
87     </scm>
88 </project>