30d40886d0f95f4867a96fc290fb6e42b2bc94f2
[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.16.11-SNAPSHOT</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.binding.model.ietf</groupId>
48             <artifactId>rfc8294-ietf-routing-types</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>org.opendaylight.mdsal</groupId>
52             <artifactId>mdsal-rfc8294-netty</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.kohsuke.metainf-services</groupId>
56             <artifactId>metainf-services</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>com.guicedee.services</groupId>
60             <artifactId>javax.inject</artifactId>
61             <optional>true</optional>
62         </dependency>
63         <dependency>
64             <groupId>org.osgi</groupId>
65             <artifactId>osgi.cmpn</artifactId>
66         </dependency>
67
68         <!-- test scope dependencies -->
69         <dependency>
70             <groupId>${project.groupId}</groupId>
71             <artifactId>rsvp-impl</artifactId>
72             <scope>test</scope>
73         </dependency>
74         <dependency>
75             <groupId>org.opendaylight.yangtools</groupId>
76             <artifactId>mockito-configuration</artifactId>
77         </dependency>
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>${project.groupId}</groupId>
86             <artifactId>bgp-inet</artifactId>
87             <scope>test</scope>
88         </dependency>
89         <dependency>
90             <groupId>${project.groupId}</groupId>
91             <artifactId>bgp-parser-impl</artifactId>
92             <scope>test</scope>
93         </dependency>
94         <dependency>
95             <groupId>org.opendaylight.mdsal</groupId>
96             <artifactId>mdsal-binding-api</artifactId>
97             <scope>test</scope>
98         </dependency>
99         <dependency>
100             <groupId>org.hamcrest</groupId>
101             <artifactId>hamcrest-core</artifactId>
102         </dependency>
103     </dependencies>
104
105     <scm>
106         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
107         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
108         <url>https://wiki.opendaylight.org/display/ODL/BGPCEP</url>
109         <tag>HEAD</tag>
110     </scm>
111 </project>