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