Derive aggregators from odlparent-lite
[bgpcep.git] / bgp / 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
11 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12
13     <modelVersion>4.0.0</modelVersion>
14     <parent>
15         <groupId>org.opendaylight.bgpcep</groupId>
16         <artifactId>binding-parent</artifactId>
17         <version>0.7.0-SNAPSHOT</version>
18         <relativePath>../../binding-parent</relativePath>
19     </parent>
20
21     <artifactId>bgp-linkstate</artifactId>
22     <packaging>bundle</packaging>
23     <description>BGP linkstate concepts</description>
24     <name>${project.artifactId}</name>
25
26     <dependencies>
27         <dependency>
28             <groupId>${project.groupId}</groupId>
29             <artifactId>concepts</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>${project.groupId}</groupId>
33             <artifactId>rsvp-spi</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>${project.groupId}</groupId>
37             <artifactId>bgp-concepts</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>${project.groupId}</groupId>
41             <artifactId>bgp-parser-api</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>${project.groupId}</groupId>
45             <artifactId>bgp-parser-spi</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>${project.groupId}</groupId>
49             <artifactId>bgp-rib-api</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>${project.groupId}</groupId>
53             <artifactId>bgp-rib-spi</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>${project.groupId}</groupId>
57             <artifactId>rsvp-api</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>${project.groupId}</groupId>
61             <artifactId>util</artifactId>
62         </dependency>
63
64         <dependency>
65             <groupId>org.slf4j</groupId>
66             <artifactId>slf4j-api</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>com.google.guava</groupId>
70             <artifactId>guava</artifactId>
71         </dependency>
72
73         <dependency>
74             <groupId>org.opendaylight.mdsal</groupId>
75             <artifactId>yang-binding</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>org.opendaylight.yangtools</groupId>
79             <artifactId>yang-common</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>org.opendaylight.yangtools</groupId>
83             <artifactId>concepts</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>org.opendaylight.mdsal.model</groupId>
87             <artifactId>ietf-inet-types-2013-07-15</artifactId>
88         </dependency>
89          <dependency>
90             <groupId>org.opendaylight.controller</groupId>
91             <artifactId>config-api</artifactId>
92          </dependency>
93          <dependency>
94             <groupId>io.netty</groupId>
95             <artifactId>netty-buffer</artifactId>
96          </dependency>
97
98          <dependency>
99             <groupId>org.osgi</groupId>
100             <artifactId>org.osgi.core</artifactId>
101             <scope>provided</scope>
102          </dependency>
103          <dependency>
104             <groupId>${project.groupId}</groupId>
105             <artifactId>bgp-bmp-api</artifactId>
106          </dependency>
107          <!-- test scope dependencies -->
108         <dependency>
109             <groupId>${project.groupId}</groupId>
110             <artifactId>rsvp-impl</artifactId>
111             <scope>test</scope>
112         </dependency>
113          <dependency>
114              <groupId>junit</groupId>
115              <artifactId>junit</artifactId>
116          </dependency>
117          <dependency>
118              <groupId>org.opendaylight.controller</groupId>
119              <artifactId>config-manager</artifactId>
120              <type>test-jar</type>
121          </dependency>
122          <dependency>
123              <groupId>org.opendaylight.controller</groupId>
124              <artifactId>config-manager</artifactId>
125              <scope>test</scope>
126          </dependency>
127          <dependency>
128              <groupId>org.opendaylight.controller</groupId>
129              <artifactId>config-util</artifactId>
130          </dependency>
131          <dependency>
132              <groupId>org.opendaylight.yangtools</groupId>
133              <artifactId>mockito-configuration</artifactId>
134          </dependency>
135          <dependency>
136              <groupId>org.mockito</groupId>
137              <artifactId>mockito-core</artifactId>
138              <scope>test</scope>
139          </dependency>
140          <dependency>
141              <groupId>${project.groupId}</groupId>
142              <artifactId>bgp-rib-spi</artifactId>
143              <type>test-jar</type>
144          </dependency>
145          <dependency>
146              <groupId>${project.groupId}</groupId>
147              <artifactId>bgp-parser-spi</artifactId>
148              <type>test-jar</type>
149          </dependency>
150          <dependency>
151              <groupId>${project.groupId}</groupId>
152              <artifactId>bgp-inet</artifactId>
153              <scope>test</scope>
154          </dependency>
155          <dependency>
156              <groupId>${project.groupId}</groupId>
157              <artifactId>bgp-parser-impl</artifactId>
158              <scope>test</scope>
159          </dependency>
160          <dependency>
161             <groupId>org.opendaylight.controller</groupId>
162             <artifactId>sal-binding-broker-impl</artifactId>
163             <scope>test</scope>
164         </dependency>
165         <dependency>
166             <groupId>org.opendaylight.controller</groupId>
167             <artifactId>sal-common-api</artifactId>
168         </dependency>
169         <dependency>
170             <groupId>org.opendaylight.controller</groupId>
171             <artifactId>sal-binding-api</artifactId>
172             <scope>test</scope>
173         </dependency>
174         <dependency>
175             <groupId>org.opendaylight.controller</groupId>
176             <artifactId>sal-binding-broker-impl</artifactId>
177             <scope>test</scope>
178             <type>test-jar</type>
179         </dependency>
180         <dependency>
181             <groupId>org.hamcrest</groupId>
182             <artifactId>hamcrest-core</artifactId>
183             <scope>test</scope>
184         </dependency>
185     </dependencies>
186
187     <scm>
188         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
189         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
190         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
191         <tag>HEAD</tag>
192     </scm>
193
194     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
195     <distributionManagement>
196         <site>
197             <id>opendaylight-site</id>
198             <url>${nexus.site.url}/${project.artifactId}/</url>
199         </site>
200     </distributionManagement>
201 </project>