Applying the Helium SR4 release patch
[bgpcep.git] / integration-tests / 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>commons.parent</artifactId>
23         <version>0.3.5-Helium-SR4</version>
24         <relativePath>../commons/parent</relativePath>
25     </parent>
26
27     <artifactId>integration-tests</artifactId>
28     <description>BGPCEP integration tests</description>
29     <packaging>jar</packaging>
30     <name>${project.artifactId}</name>
31     <prerequisites>
32         <maven>3.0.4</maven>
33     </prerequisites>
34
35     <properties>
36         <exam.version>3.3.0</exam.version>
37         <url.version>1.6.0</url.version>
38         <antlr.version>4.0</antlr.version>
39         <xtend-lib-osgi.version>2.4.3</xtend-lib-osgi.version>
40         <moxy.controller.version>2.5.0</moxy.controller.version>
41     </properties>
42
43     <build>
44         <plugins>
45             <plugin>
46                 <groupId>org.ops4j.pax.exam</groupId>
47                 <artifactId>maven-paxexam-plugin</artifactId>
48                 <version>1.2.4</version>
49                 <executions>
50                     <execution>
51                         <id>generate-config</id>
52                         <goals>
53                             <goal>generate-depends-file</goal>
54                         </goals>
55                     </execution>
56                 </executions>
57             </plugin>
58
59         <!--This plugin's configuration is used to store Eclipse
60             m2e settings only. It has no influence on the Maven build itself. -->
61             <plugin>
62                 <groupId>org.eclipse.m2e</groupId>
63                 <artifactId>lifecycle-mapping</artifactId>
64                 <configuration>
65                     <lifecycleMappingMetadata>
66                         <pluginExecutions>
67                             <pluginExecution>
68                                 <pluginExecutionFilter>
69                                     <groupId>
70                                         org.ops4j.pax.exam
71                                     </groupId>
72                                     <artifactId>
73                                         maven-paxexam-plugin
74                                     </artifactId>
75                                     <versionRange>
76                                         [1.2.4,)
77                                     </versionRange>
78                                     <goals>
79                                         <goal>
80                                             generate-depends-file
81                                         </goal>
82                                     </goals>
83                                 </pluginExecutionFilter>
84                                 <action>
85                                     <ignore />
86                                 </action>
87                             </pluginExecution>
88                         </pluginExecutions>
89                     </lifecycleMappingMetadata>
90                 </configuration>
91             </plugin>
92         </plugins>
93     </build>
94
95     <dependencies>
96         <dependency>
97             <groupId>org.opendaylight.controller</groupId>
98             <artifactId>logback-config</artifactId>
99             <version>${controller.config.version}</version>
100             <scope>test</scope>
101         </dependency>
102         <dependency>
103             <groupId>org.opendaylight.controller</groupId>
104             <artifactId>config-manager</artifactId>
105             <scope>test</scope>
106         </dependency>
107         <dependency>
108             <groupId>org.opendaylight.controller</groupId>
109             <artifactId>config-netconf-connector</artifactId>
110             <version>${controller.config.version}</version>
111             <scope>test</scope>
112         </dependency>
113         <dependency>
114             <groupId>org.opendaylight.controller</groupId>
115             <artifactId>yang-jmx-generator</artifactId>
116             <version>${controller.config.version}</version>
117             <scope>test</scope>
118         </dependency>
119         <dependency>
120             <groupId>org.opendaylight.controller</groupId>
121             <artifactId>netconf-monitoring</artifactId>
122             <version>${controller.config.version}</version>
123             <scope>test</scope>
124         </dependency>
125         <dependency>
126             <groupId>org.opendaylight.controller</groupId>
127             <artifactId>netconf-impl</artifactId>
128             <version>${controller.config.version}</version>
129             <scope>test</scope>
130         </dependency>
131
132         <dependency>
133             <groupId>org.opendaylight.controller</groupId>
134             <artifactId>ietf-netconf-monitoring</artifactId>
135             <version>${controller.config.version}</version>
136             <scope>test</scope>
137         </dependency>
138         <dependency>
139             <groupId>org.opendaylight.controller</groupId>
140             <artifactId>config-persister-impl</artifactId>
141             <version>${controller.config.version}</version>
142             <scope>test</scope>
143         </dependency>
144         <dependency>
145             <groupId>org.opendaylight.controller</groupId>
146             <artifactId>config-persister-file-xml-adapter</artifactId>
147             <version>${controller.config.version}</version>
148             <scope>test</scope>
149         </dependency>
150
151         <dependency>
152             <groupId>org.slf4j</groupId>
153             <artifactId>slf4j-api</artifactId>
154             <scope>test</scope>
155         </dependency>
156         <dependency>
157             <groupId>org.opendaylight.yangtools.thirdparty</groupId>
158             <artifactId>antlr4-runtime-osgi-nohead</artifactId>
159             <version>${antlr.version}</version>
160             <scope>test</scope>
161         </dependency>
162         <dependency>
163             <groupId>org.opendaylight.controller</groupId>
164             <artifactId>sal-binding-api</artifactId>
165             <scope>test</scope>
166         </dependency>
167         <dependency>
168             <groupId>${project.groupId}</groupId>
169             <artifactId>pcep-topology-api</artifactId>
170             <version>${project.version}</version>
171             <scope>test</scope>
172         </dependency>
173         <dependency>
174             <groupId>${project.groupId}</groupId>
175             <artifactId>pcep-tunnel-api</artifactId>
176             <version>${project.version}</version>
177             <scope>test</scope>
178         </dependency>
179         <dependency>
180             <groupId>${project.groupId}</groupId>
181             <artifactId>pcep-api</artifactId>
182             <version>${project.version}</version>
183             <scope>test</scope>
184         </dependency>
185         <dependency>
186             <groupId>${project.groupId}</groupId>
187             <artifactId>programming-topology-api</artifactId>
188             <version>${project.version}</version>
189             <scope>test</scope>
190         </dependency>
191         <dependency>
192             <groupId>${project.groupId}</groupId>
193             <artifactId>bgp-parser-mock</artifactId>
194             <version>${project.version}</version>
195             <scope>test</scope>
196         </dependency>
197         <dependency>
198             <groupId>${project.groupId}</groupId>
199             <artifactId>bgp-rib-mock</artifactId>
200             <version>${project.version}</version>
201             <scope>test</scope>
202         </dependency>
203         <dependency>
204             <groupId>${project.groupId}</groupId>
205             <artifactId>bgp-testtool</artifactId>
206             <version>${project.version}</version>
207             <scope>test</scope>
208         </dependency>
209         <dependency>
210             <groupId>${project.groupId}</groupId>
211             <artifactId>bgp-util</artifactId>
212             <version>${project.version}</version>
213             <scope>test</scope>
214         </dependency>
215         <dependency>
216             <groupId>${project.groupId}</groupId>
217             <artifactId>pcep-testtool</artifactId>
218             <version>${project.version}</version>
219             <scope>test</scope>
220         </dependency>
221         <dependency>
222             <groupId>${project.groupId}</groupId>
223             <artifactId>pcep-ietf-stateful02</artifactId>
224             <version>${project.version}</version>
225             <scope>test</scope>
226         </dependency>
227
228         <dependency>
229             <groupId>${project.groupId}</groupId>
230             <artifactId>programming-api</artifactId>
231             <version>${project.version}</version>
232             <scope>test</scope>
233         </dependency>
234         <dependency>
235             <groupId>${project.groupId}</groupId>
236             <artifactId>programming-tunnel-api</artifactId>
237             <version>${project.version}</version>
238             <scope>test</scope>
239         </dependency>
240         <dependency>
241             <groupId>${project.groupId}</groupId>
242             <artifactId>topology-api</artifactId>
243             <version>${project.version}</version>
244             <scope>test</scope>
245         </dependency>
246         <dependency>
247             <groupId>${project.groupId}</groupId>
248             <artifactId>topology-segment-routing</artifactId>
249             <version>${project.version}</version>
250             <scope>test</scope>
251         </dependency>
252         <dependency>
253             <groupId>${project.groupId}</groupId>
254             <artifactId>topology-tunnel-api</artifactId>
255             <version>${project.version}</version>
256             <scope>test</scope>
257         </dependency>
258
259         <dependency>
260             <groupId>org.opendaylight.controller</groupId>
261             <artifactId>sal-binding-broker-impl</artifactId>
262             <exclusions>
263                 <exclusion>
264                     <groupId>xml-apis</groupId>
265                     <artifactId>xml-apis</artifactId>
266                 </exclusion>
267             </exclusions>
268             <scope>test</scope>
269         </dependency>
270         <dependency>
271             <groupId>org.opendaylight.controller</groupId>
272             <artifactId>sal-binding-util</artifactId>
273             <scope>test</scope>
274         </dependency>
275         <dependency>
276             <groupId>org.opendaylight.controller</groupId>
277             <artifactId>sal-broker-impl</artifactId>
278             <scope>test</scope>
279         </dependency>
280         <dependency>
281             <groupId>org.opendaylight.yangtools</groupId>
282             <artifactId>concepts</artifactId>
283             <scope>test</scope>
284         </dependency>
285         <dependency>
286             <groupId>org.opendaylight.yangtools</groupId>
287             <artifactId>yang-binding</artifactId>
288             <scope>test</scope>
289         </dependency>
290         <dependency>
291             <groupId>org.opendaylight.yangtools</groupId>
292             <artifactId>yang-common</artifactId>
293             <scope>test</scope>
294         </dependency>
295         <dependency>
296             <groupId>org.opendaylight.yangtools.thirdparty</groupId>
297             <artifactId>xtend-lib-osgi</artifactId>
298             <version>${xtend-lib-osgi.version}</version>
299             <scope>test</scope>
300         </dependency>
301
302         <dependency>
303             <groupId>com.google.guava</groupId>
304             <artifactId>guava</artifactId>
305             <scope>test</scope>
306         </dependency>
307         <dependency>
308             <groupId>org.ops4j.pax.exam</groupId>
309             <artifactId>pax-exam-container-native</artifactId>
310             <scope>test</scope>
311         </dependency>
312         <dependency>
313             <groupId>org.ops4j.pax.exam</groupId>
314             <artifactId>pax-exam-junit4</artifactId>
315             <scope>test</scope>
316         </dependency>
317         <dependency>
318             <groupId>org.ops4j.pax.exam</groupId>
319             <artifactId>pax-exam</artifactId>
320             <version>${exam.version}</version>
321             <scope>test</scope>
322         </dependency>
323         <dependency>
324             <groupId>org.ops4j.pax.exam</groupId>
325             <artifactId>pax-exam-spi</artifactId>
326             <version>${exam.version}</version>
327             <scope>test</scope>
328         </dependency>
329         <dependency>
330             <groupId>org.ops4j.pax.exam</groupId>
331             <artifactId>pax-exam-link-mvn</artifactId>
332             <scope>test</scope>
333         </dependency>
334         <dependency>
335             <groupId>org.ops4j.pax.url</groupId>
336             <artifactId>pax-url-aether</artifactId>
337             <scope>test</scope>
338         </dependency>
339         <dependency>
340             <groupId>equinoxSDK381</groupId>
341             <artifactId>org.eclipse.osgi</artifactId>
342             <scope>test</scope>
343         </dependency>
344         <!--
345         <dependency>
346             <groupId>org.apache.felix</groupId>
347             <artifactId>org.apache.felix.framework</artifactId>
348             <version>4.2.1</version>
349             <scope>test</scope>
350         </dependency>
351         -->
352         <dependency>
353             <groupId>org.mockito</groupId>
354             <artifactId>mockito-core</artifactId>
355         </dependency>
356         <dependency>
357             <groupId>org.opendaylight.yangtools</groupId>
358             <artifactId>mockito-configuration</artifactId>
359         </dependency>
360
361         <dependency>
362             <groupId>org.opendaylight.controller</groupId>
363             <artifactId>sal-binding-it</artifactId>
364             <version>${controller.mdsal.version}</version>
365             <scope>test</scope>
366         </dependency>
367
368         <dependency>
369           <groupId>org.opendaylight.controller</groupId>
370           <artifactId>netconf-client</artifactId>
371           <version>${controller.config.version}</version>
372           <scope>test</scope>
373         </dependency>
374
375         <dependency>
376             <groupId>org.opendaylight.controller</groupId>
377             <artifactId>sal-binding-broker-impl</artifactId>
378             <scope>test</scope>
379             <type>test-jar</type>
380         </dependency>
381         <dependency>
382             <groupId>junit</groupId>
383             <artifactId>junit</artifactId>
384         </dependency>
385         <dependency>
386             <groupId>org.opendaylight.yangtools.model</groupId>
387             <artifactId>ietf-topology</artifactId>
388             <scope>test</scope>
389         </dependency>
390         <dependency>
391             <groupId>org.osgi</groupId>
392             <artifactId>org.osgi.core</artifactId>
393             <scope>test</scope>
394         </dependency>
395
396     </dependencies>
397
398 </project>