bc29b0c9e1cc1287ec0d9c67c88b157cbc89d751
[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.21.2</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>util</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.yangtools</groupId>
44             <artifactId>yang-common-netty</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>org.osgi.service.component.annotations</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>org.osgi</groupId>
69             <artifactId>org.osgi.service.metatype.annotations</artifactId>
70         </dependency>
71
72         <!-- test scope dependencies -->
73         <dependency>
74             <groupId>${project.groupId}</groupId>
75             <artifactId>rsvp-impl</artifactId>
76             <scope>test</scope>
77         </dependency>
78         <dependency>
79             <groupId>org.opendaylight.yangtools</groupId>
80             <artifactId>mockito-configuration</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>org.opendaylight.yangtools</groupId>
84             <artifactId>yang-data-spi</artifactId>
85             <scope>test</scope>
86         </dependency>
87         <dependency>
88             <groupId>${project.groupId}</groupId>
89             <artifactId>bgp-parser-spi</artifactId>
90             <type>test-jar</type>
91             <scope>test</scope>
92         </dependency>
93         <dependency>
94             <groupId>${project.groupId}</groupId>
95             <artifactId>bgp-inet</artifactId>
96             <scope>test</scope>
97         </dependency>
98         <dependency>
99             <groupId>${project.groupId}</groupId>
100             <artifactId>bgp-parser-impl</artifactId>
101             <scope>test</scope>
102         </dependency>
103         <dependency>
104             <groupId>org.opendaylight.mdsal</groupId>
105             <artifactId>mdsal-binding-api</artifactId>
106             <scope>test</scope>
107         </dependency>
108     </dependencies>
109
110     <scm>
111         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
112         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
113         <url>https://wiki.opendaylight.org/display/ODL/BGPCEP</url>
114         <tag>HEAD</tag>
115     </scm>
116 </project>