[maven-release-plugin] prepare release releasepom-0.3.0
[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>releasepom-0.3.0</tag>
19     </scm>
20     <parent>
21         <groupId>org.opendaylight.bgpcep</groupId>
22         <artifactId>commons.parent</artifactId>
23         <version>0.3.0</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                 <version>1.0.0</version>
65                 <configuration>
66                     <lifecycleMappingMetadata>
67                         <pluginExecutions>
68                             <pluginExecution>
69                                 <pluginExecutionFilter>
70                                     <groupId>
71                                         org.ops4j.pax.exam
72                                     </groupId>
73                                     <artifactId>
74                                         maven-paxexam-plugin
75                                     </artifactId>
76                                     <versionRange>
77                                         [1.2.4,)
78                                     </versionRange>
79                                     <goals>
80                                         <goal>
81                                             generate-depends-file
82                                         </goal>
83                                     </goals>
84                                 </pluginExecutionFilter>
85                                 <action>
86                                     <ignore />
87                                 </action>
88                             </pluginExecution>
89                         </pluginExecutions>
90                     </lifecycleMappingMetadata>
91                 </configuration>
92             </plugin>
93         </plugins>
94     </build>
95
96         <dependencies>
97         <dependency>
98             <groupId>ch.qos.logback</groupId>
99             <artifactId>logback-classic</artifactId>
100         </dependency>
101         <dependency>
102             <groupId>org.opendaylight.controller</groupId>
103             <artifactId>logback-config</artifactId>
104             <version>${controller.config.version}</version>
105             <scope>test</scope>
106         </dependency>
107         <dependency>
108             <groupId>org.opendaylight.controller</groupId>
109             <artifactId>config-manager</artifactId>
110             <version>${controller.config.version}</version>
111             <scope>test</scope>
112         </dependency>
113         <dependency>
114             <groupId>org.opendaylight.controller</groupId>
115             <artifactId>config-netconf-connector</artifactId>
116             <version>${controller.config.version}</version>
117             <scope>test</scope>
118         </dependency>
119         <dependency>
120             <groupId>org.opendaylight.controller</groupId>
121             <artifactId>yang-jmx-generator</artifactId>
122             <version>${controller.config.version}</version>
123             <scope>test</scope>
124         </dependency>
125         <dependency>
126             <groupId>org.opendaylight.controller</groupId>
127             <artifactId>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>netconf-impl</artifactId>
134             <version>${controller.config.version}</version>
135             <scope>test</scope>
136         </dependency>
137
138         <dependency>
139             <groupId>org.opendaylight.controller</groupId>
140             <artifactId>ietf-netconf-monitoring</artifactId>
141             <version>${controller.config.version}</version>
142             <scope>test</scope>
143         </dependency>
144         <dependency>
145             <groupId>org.opendaylight.controller</groupId>
146             <artifactId>yang-store-impl</artifactId>
147             <version>${controller.config.version}</version>
148             <scope>test</scope>
149         </dependency>
150         <dependency>
151             <groupId>org.opendaylight.controller</groupId>
152             <artifactId>config-persister-impl</artifactId>
153             <version>${controller.config.version}</version>
154             <scope>test</scope>
155         </dependency>
156         <dependency>
157             <groupId>org.opendaylight.controller</groupId>
158             <artifactId>config-persister-file-xml-adapter</artifactId>
159             <version>${controller.config.version}</version>
160             <scope>test</scope>
161         </dependency>
162
163         <dependency>
164             <groupId>org.eclipse.persistence</groupId>
165             <artifactId>org.eclipse.persistence.moxy</artifactId>
166             <version>${moxy.controller.version}</version>
167         </dependency>
168         <dependency>
169             <groupId>org.eclipse.persistence</groupId>
170             <artifactId>org.eclipse.persistence.core</artifactId>
171             <version>${moxy.controller.version}</version>
172         </dependency>
173         <dependency>
174             <groupId>org.slf4j</groupId>
175             <artifactId>slf4j-api</artifactId>
176             <scope>test</scope>
177         </dependency>
178         <dependency>
179             <groupId>org.opendaylight.yangtools.thirdparty</groupId>
180             <artifactId>antlr4-runtime-osgi-nohead</artifactId>
181             <version>${antlr.version}</version>
182             <scope>test</scope>
183         </dependency>
184         <dependency>
185             <groupId>org.opendaylight.controller</groupId>
186             <artifactId>sal-binding-api</artifactId>
187             <scope>test</scope>
188         </dependency>
189         <dependency>
190             <groupId>${project.groupId}</groupId>
191             <artifactId>pcep-topology-api</artifactId>
192             <version>${project.version}</version>
193             <scope>test</scope>
194         </dependency>
195         <dependency>
196             <groupId>${project.groupId}</groupId>
197             <artifactId>pcep-tunnel-api</artifactId>
198             <version>${project.version}</version>
199             <scope>test</scope>
200         </dependency>
201         <dependency>
202             <groupId>${project.groupId}</groupId>
203             <artifactId>pcep-api</artifactId>
204             <version>${project.version}</version>
205             <scope>test</scope>
206         </dependency>
207         <dependency>
208             <groupId>${project.groupId}</groupId>
209             <artifactId>programming-topology-api</artifactId>
210             <version>${project.version}</version>
211             <scope>test</scope>
212         </dependency>
213         <dependency>
214                         <groupId>${project.groupId}</groupId>
215                         <artifactId>bgp-parser-mock</artifactId>
216             <version>${project.version}</version>
217             <scope>test</scope>
218         </dependency>
219         <dependency>
220             <groupId>${project.groupId}</groupId>
221             <artifactId>bgp-rib-mock</artifactId>
222             <version>${project.version}</version>
223             <scope>test</scope>
224         </dependency>
225         <dependency>
226             <groupId>${project.groupId}</groupId>
227             <artifactId>bgp-testtool</artifactId>
228             <version>${project.version}</version>
229             <scope>test</scope>
230         </dependency>
231         <dependency>
232             <groupId>${project.groupId}</groupId>
233             <artifactId>pcep-testtool</artifactId>
234             <version>${project.version}</version>
235             <scope>test</scope>
236         </dependency>
237
238         <dependency>
239             <groupId>${project.groupId}</groupId>
240             <artifactId>programming-api</artifactId>
241             <version>${project.version}</version>
242             <scope>test</scope>
243         </dependency>
244         <dependency>
245             <groupId>${project.groupId}</groupId>
246             <artifactId>programming-tunnel-api</artifactId>
247             <version>${project.version}</version>
248             <scope>test</scope>
249         </dependency>
250         <dependency>
251             <groupId>${project.groupId}</groupId>
252             <artifactId>topology-api</artifactId>
253             <version>${project.version}</version>
254             <scope>test</scope>
255         </dependency>
256         <dependency>
257             <groupId>${project.groupId}</groupId>
258             <artifactId>topology-segment-routing</artifactId>
259             <version>${project.version}</version>
260             <scope>test</scope>
261         </dependency>
262         <dependency>
263             <groupId>${project.groupId}</groupId>
264             <artifactId>topology-tunnel-api</artifactId>
265             <version>${project.version}</version>
266             <scope>test</scope>
267         </dependency>
268
269         <dependency>
270             <groupId>org.opendaylight.controller</groupId>
271             <artifactId>sal-binding-broker-impl</artifactId>
272             <exclusions>
273                 <exclusion>
274                     <groupId>xml-apis</groupId>
275                     <artifactId>xml-apis</artifactId>
276                 </exclusion>
277             </exclusions>
278             <scope>test</scope>
279         </dependency>
280         <dependency>
281             <groupId>org.opendaylight.controller</groupId>
282             <artifactId>sal-binding-util</artifactId>
283             <scope>test</scope>
284         </dependency>
285         <dependency>
286             <groupId>org.opendaylight.controller</groupId>
287             <artifactId>sal-broker-impl</artifactId>
288             <scope>test</scope>
289         </dependency>
290         <dependency>
291             <groupId>org.opendaylight.controller</groupId>
292             <artifactId>protocol-framework</artifactId>
293         </dependency>
294         <dependency>
295             <groupId>org.opendaylight.yangtools</groupId>
296             <artifactId>concepts</artifactId>
297             <version>${yangtools.version}</version>
298             <scope>test</scope>
299         </dependency>
300         <dependency>
301             <groupId>org.opendaylight.yangtools</groupId>
302             <artifactId>yang-binding</artifactId>
303             <scope>test</scope>
304         </dependency>
305         <dependency>
306             <groupId>org.opendaylight.yangtools</groupId>
307             <artifactId>yang-common</artifactId>
308             <scope>test</scope>
309         </dependency>
310         <dependency>
311             <groupId>org.opendaylight.yangtools.thirdparty</groupId>
312             <artifactId>xtend-lib-osgi</artifactId>
313             <version>${xtend-lib-osgi.version}</version>
314             <scope>test</scope>
315         </dependency>
316
317         <dependency>
318             <groupId>com.google.guava</groupId>
319             <artifactId>guava</artifactId>
320             <scope>test</scope>
321         </dependency>
322         <dependency>
323             <groupId>org.ops4j.pax.exam</groupId>
324             <artifactId>pax-exam-container-native</artifactId>
325             <version>${exam.version}</version>
326             <scope>test</scope>
327         </dependency>
328         <dependency>
329             <groupId>org.ops4j.pax.exam</groupId>
330             <artifactId>pax-exam-junit4</artifactId>
331             <version>${exam.version}</version>
332             <scope>test</scope>
333         </dependency>
334         <dependency>
335             <groupId>org.ops4j.pax.exam</groupId>
336             <artifactId>pax-exam-link-mvn</artifactId>
337             <version>${exam.version}</version>
338             <scope>test</scope>
339         </dependency>
340         <dependency>
341             <groupId>org.ops4j.pax.url</groupId>
342             <artifactId>pax-url-aether</artifactId>
343             <version>${url.version}</version>
344             <scope>test</scope>
345         </dependency>
346         <dependency>
347             <groupId>equinoxSDK381</groupId>
348             <artifactId>org.eclipse.osgi</artifactId>
349             <version>3.8.1.v20120830-144521</version>
350             <scope>test</scope>
351         </dependency>
352         <!--dependency>
353             <groupId>org.apache.felix</groupId>
354             <artifactId>org.apache.felix.framework</artifactId>
355             <version>4.2.1</version>
356             <scope>test</scope>
357         </dependency-->
358         <dependency>
359             <groupId>org.opendaylight.yangtools</groupId>
360             <artifactId>mockito-configuration</artifactId>
361         </dependency>
362     </dependencies>
363 </project>