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