Version bump Helium-SR1.1
[bgpcep.git] / bgp / topology-provider / 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     <scm>
15         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
16         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
17         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
18         <tag>HEAD</tag>
19     </scm>
20     <parent>
21         <groupId>org.opendaylight.bgpcep</groupId>
22         <artifactId>bgp-parent</artifactId>
23         <version>0.3.2-Helium-SR1.1</version>
24     </parent>
25
26     <artifactId>bgp-topology-provider</artifactId>
27     <description>BGP Topology Provider</description>
28     <packaging>bundle</packaging>
29     <name>${project.artifactId}</name>
30     <prerequisites>
31         <maven>3.0.4</maven>
32     </prerequisites>
33
34     <dependencies>
35         <dependency>
36             <groupId>${project.groupId}</groupId>
37             <artifactId>concepts</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-parser-api</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>bgp-linkstate</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>${project.groupId}</groupId>
61             <artifactId>topology-api</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>org.opendaylight.yangtools</groupId>
65             <artifactId>concepts</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>org.opendaylight.yangtools</groupId>
69             <artifactId>yang-binding</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>org.opendaylight.yangtools</groupId>
73             <artifactId>yang-common</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>org.opendaylight.controller</groupId>
77             <artifactId>sal-binding-api</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>org.opendaylight.controller</groupId>
81             <artifactId>sal-common-api</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>org.slf4j</groupId>
85             <artifactId>slf4j-api</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>com.google.guava</groupId>
89             <artifactId>guava</artifactId>
90         </dependency>
91
92         <dependency>
93             <groupId>org.opendaylight.yangtools.model</groupId>
94             <artifactId>ietf-ted</artifactId>
95         </dependency>
96         <dependency>
97             <groupId>org.opendaylight.yangtools.model</groupId>
98             <artifactId>ietf-topology</artifactId>
99         </dependency>
100         <dependency>
101             <groupId>org.opendaylight.yangtools.model</groupId>
102             <artifactId>ietf-topology-isis</artifactId>
103         </dependency>
104         <dependency>
105             <groupId>org.opendaylight.yangtools.model</groupId>
106             <artifactId>ietf-topology-ospf</artifactId>
107         </dependency>
108         <dependency>
109             <groupId>org.opendaylight.yangtools.model</groupId>
110             <artifactId>ietf-topology-l3-unicast-igp</artifactId>
111         </dependency>
112         <dependency>
113             <groupId>org.opendaylight.yangtools.model</groupId>
114             <artifactId>ietf-inet-types</artifactId>
115         </dependency>
116
117         <dependency>
118             <groupId>org.opendaylight.controller</groupId>
119             <artifactId>config-api</artifactId>
120         </dependency>
121         <dependency>
122             <groupId>org.opendaylight.controller</groupId>
123             <artifactId>sal-binding-config</artifactId>
124         </dependency>
125         <dependency>
126             <groupId>org.opendaylight.controller</groupId>
127             <artifactId>protocol-framework</artifactId>
128         </dependency>
129
130         <dependency>
131             <groupId>io.netty</groupId>
132             <artifactId>netty-buffer</artifactId>
133         </dependency>
134         <dependency>
135             <groupId>commons-codec</groupId>
136             <artifactId>commons-codec</artifactId>
137             <scope>provided</scope>
138         </dependency>
139         <dependency>
140             <groupId>org.osgi</groupId>
141             <artifactId>org.osgi.core</artifactId>
142             <scope>provided</scope>
143         </dependency>
144
145         <!-- Test dependencies -->
146         <dependency>
147             <groupId>org.mockito</groupId>
148             <artifactId>mockito-core</artifactId>
149             <scope>test</scope>
150         </dependency>
151         <dependency>
152             <groupId>junit</groupId>
153             <artifactId>junit</artifactId>
154         </dependency>
155         <dependency>
156             <groupId>org.opendaylight.controller</groupId>
157             <artifactId>config-manager</artifactId>
158             <type>test-jar</type>
159         </dependency>
160         <dependency>
161             <groupId>org.opendaylight.controller</groupId>
162             <artifactId>config-manager</artifactId>
163         </dependency>
164         <dependency>
165             <groupId>org.opendaylight.controller</groupId>
166             <artifactId>config-util</artifactId>
167         </dependency>
168         <dependency>
169             <groupId>org.opendaylight.yangtools</groupId>
170             <artifactId>mockito-configuration</artifactId>
171         </dependency>
172         <dependency>
173             <groupId>${project.groupId}</groupId>
174             <artifactId>bgp-rib-impl</artifactId>
175             <type>test-jar</type>
176         </dependency>
177         <dependency>
178             <groupId>${project.groupId}</groupId>
179             <artifactId>bgp-rib-impl</artifactId>
180             <scope>test</scope>
181         </dependency>
182         <dependency>
183             <groupId>${project.groupId}</groupId>
184             <artifactId>bgp-rib-mock</artifactId>
185             <scope>test</scope>
186         </dependency>
187         <dependency>
188             <groupId>${project.groupId}</groupId>
189             <artifactId>bgp-util</artifactId>
190             <scope>test</scope>
191         </dependency>
192         <dependency>
193             <groupId>org.opendaylight.controller</groupId>
194             <artifactId>sal-binding-broker-impl</artifactId>
195             <scope>test</scope>
196         </dependency>
197         <dependency>
198             <groupId>org.opendaylight.controller</groupId>
199             <artifactId>netty-event-executor-config</artifactId>
200         </dependency>
201         <dependency>
202             <groupId>org.opendaylight.controller</groupId>
203             <artifactId>protocol-framework</artifactId>
204             <type>test-jar</type>
205         </dependency>
206         <dependency>
207             <groupId>org.opendaylight.controller</groupId>
208             <artifactId>sal-binding-broker-impl</artifactId>
209             <scope>test</scope>
210             <type>test-jar</type>
211         </dependency>
212         <dependency>
213             <groupId>org.opendaylight.controller</groupId>
214             <artifactId>netty-threadgroup-config</artifactId>
215         </dependency>
216     </dependencies>
217
218     <build>
219         <plugins>
220            <plugin>
221                <groupId>org.apache.felix</groupId>
222                <artifactId>maven-bundle-plugin</artifactId>
223                <extensions>true</extensions>
224                <configuration>
225                    <instructions>
226                        <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
227                    </instructions>
228                </configuration>
229            </plugin>
230            <plugin>
231                 <groupId>org.opendaylight.yangtools</groupId>
232                 <artifactId>yang-maven-plugin</artifactId>
233             </plugin>
234         </plugins>
235     </build>
236 </project>