Bump upstreams
[bgpcep.git] / bgp / extensions / evpn / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright (c) 2016 Cisco Systems, Inc. and others.  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-evpn</artifactId>
21     <description>BGP Evpn</description>
22     <packaging>bundle</packaging>
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-mvpn</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>${project.groupId}</groupId>
46             <artifactId>concepts</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>org.opendaylight.yangtools</groupId>
50             <artifactId>util</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>org.opendaylight.yangtools</groupId>
54             <artifactId>yang-common-netty</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>org.opendaylight.yangtools</groupId>
58             <artifactId>yang-data-impl</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
62             <artifactId>rfc6991-ietf-yang-types</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
66             <artifactId>rfc8294-ietf-routing-types</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>org.opendaylight.mdsal</groupId>
70             <artifactId>mdsal-rfc8294-netty</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>org.osgi</groupId>
74             <artifactId>org.osgi.service.component.annotations</artifactId>
75         </dependency>
76
77         <!-- test scope dependencies -->
78         <dependency>
79             <groupId>${project.groupId}</groupId>
80             <artifactId>bgp-parser-spi</artifactId>
81             <type>test-jar</type>
82             <scope>test</scope>
83         </dependency>
84         <dependency>
85             <groupId>org.opendaylight.yangtools</groupId>
86             <artifactId>mockito-configuration</artifactId>
87         </dependency>
88         <dependency>
89             <groupId>${project.groupId}</groupId>
90             <artifactId>bgp-parser-impl</artifactId>
91             <scope>test</scope>
92         </dependency>
93     </dependencies>
94
95     <scm>
96         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
97         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
98         <url>https://wiki.opendaylight.org/display/ODL/BGPCEP</url>
99         <tag>HEAD</tag>
100     </scm>
101 </project>