Release Magnesium
[bgpcep.git] / bgp / extensions / linkstate / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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.13.1</version>
17         <relativePath>../parent</relativePath>
18     </parent>
19
20     <artifactId>bgp-linkstate</artifactId>
21     <packaging>bundle</packaging>
22     <description>BGP linkstate concepts</description>
23     <name>${project.artifactId}</name>
24
25     <dependencies>
26         <dependency>
27             <groupId>${project.groupId}</groupId>
28             <artifactId>concepts</artifactId>
29         </dependency>
30         <dependency>
31             <groupId>${project.groupId}</groupId>
32             <artifactId>rsvp-spi</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>${project.groupId}</groupId>
36             <artifactId>rsvp-api</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>org.opendaylight.yangtools</groupId>
40             <artifactId>yang-common-netty</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.yangtools</groupId>
44             <artifactId>yang-data-impl</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.opendaylight.mdsal.model</groupId>
48             <artifactId>odl-uint24</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>org.opendaylight.mdsal</groupId>
52             <artifactId>mdsal-uint24-netty</artifactId>
53         </dependency>
54
55         <!-- test scope dependencies -->
56         <dependency>
57             <groupId>${project.groupId}</groupId>
58             <artifactId>rsvp-impl</artifactId>
59             <scope>test</scope>
60         </dependency>
61         <dependency>
62             <groupId>org.opendaylight.yangtools</groupId>
63             <artifactId>mockito-configuration</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>${project.groupId}</groupId>
67             <artifactId>bgp-parser-spi</artifactId>
68             <type>test-jar</type>
69             <scope>test</scope>
70         </dependency>
71         <dependency>
72             <groupId>${project.groupId}</groupId>
73             <artifactId>bgp-inet</artifactId>
74             <scope>test</scope>
75         </dependency>
76         <dependency>
77             <groupId>${project.groupId}</groupId>
78             <artifactId>bgp-parser-impl</artifactId>
79             <scope>test</scope>
80         </dependency>
81         <dependency>
82             <groupId>org.opendaylight.mdsal</groupId>
83             <artifactId>mdsal-binding-api</artifactId>
84             <scope>test</scope>
85         </dependency>
86         <dependency>
87             <groupId>org.hamcrest</groupId>
88             <artifactId>hamcrest-core</artifactId>
89         </dependency>
90     </dependencies>
91
92     <scm>
93         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
94         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
95         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
96         <tag>HEAD</tag>
97     </scm>
98 </project>