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