Provide codec Serializer via RibSupport
[bgpcep.git] / bgp / 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
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.10.0-SNAPSHOT</version>
18         <relativePath>../../binding-parent</relativePath>
19     </parent>
20
21     <artifactId>bgp-evpn</artifactId>
22     <description>BGP Evpn</description>
23     <packaging>bundle</packaging>
24     <name>${project.artifactId}</name>
25
26     <dependencies>
27         <dependency>
28             <groupId>org.opendaylight.yangtools</groupId>
29             <artifactId>yang-data-api</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.opendaylight.yangtools</groupId>
33             <artifactId>yang-data-impl</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>org.opendaylight.mdsal.model</groupId>
37             <artifactId>yang-ext</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>${project.groupId}</groupId>
41             <artifactId>bgp-concepts</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>${project.groupId}</groupId>
45             <artifactId>bgp-rib-api</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>${project.groupId}</groupId>
49             <artifactId>bgp-rib-spi</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>${project.groupId}</groupId>
53             <artifactId>bgp-parser-api</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>${project.groupId}</groupId>
57             <artifactId>bgp-parser-spi</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>${project.groupId}</groupId>
61             <artifactId>bgp-bmp-api</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>${project.groupId}</groupId>
65             <artifactId>bgp-mvpn</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>org.osgi</groupId>
69             <artifactId>org.osgi.core</artifactId>
70             <scope>provided</scope>
71         </dependency>
72         <dependency>
73             <groupId>${project.groupId}</groupId>
74             <artifactId>bgp-openconfig-api</artifactId>
75         </dependency>
76         <dependency>
77             <groupId>${project.groupId}</groupId>
78             <artifactId>bgp-openconfig-spi</artifactId>
79         </dependency>
80         <!-- test scope dependencies -->
81         <dependency>
82             <groupId>junit</groupId>
83             <artifactId>junit</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>${project.groupId}</groupId>
87             <artifactId>bgp-rib-spi</artifactId>
88             <type>test-jar</type>
89         </dependency>
90         <dependency>
91             <groupId>${project.groupId}</groupId>
92             <artifactId>bgp-parser-spi</artifactId>
93             <type>test-jar</type>
94         </dependency>
95         <dependency>
96             <groupId>org.opendaylight.yangtools</groupId>
97             <artifactId>mockito-configuration</artifactId>
98         </dependency>
99         <dependency>
100             <groupId>org.mockito</groupId>
101             <artifactId>mockito-core</artifactId>
102             <scope>test</scope>
103         </dependency>
104         <dependency>
105             <groupId>org.opendaylight.mdsal</groupId>
106             <artifactId>mdsal-binding-dom-adapter</artifactId>
107             <scope>test</scope>
108         </dependency>
109         <dependency>
110             <groupId>${project.groupId}</groupId>
111             <artifactId>bgp-parser-impl</artifactId>
112             <scope>test</scope>
113         </dependency>
114         <dependency>
115             <groupId>org.opendaylight.controller</groupId>
116             <artifactId>sal-binding-broker-impl</artifactId>
117             <scope>test</scope>
118         </dependency>
119         <dependency>
120             <groupId>org.opendaylight.controller</groupId>
121             <artifactId>sal-binding-broker-impl</artifactId>
122             <scope>test</scope>
123             <type>test-jar</type>
124         </dependency>
125     </dependencies>
126
127     <scm>
128         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
129         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
130         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
131         <tag>HEAD</tag>
132     </scm>
133 </project>