Eradicate mockito-configuration references
[bgpcep.git] / integration-tests / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5
6     <modelVersion>4.0.0</modelVersion>
7     <scm>
8         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
9         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
10         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
11         <tag>HEAD</tag>
12     </scm>
13     <parent>
14         <groupId>org.opendaylight.bgpcep</groupId>
15         <artifactId>commons.parent</artifactId>
16         <version>0.3.0-SNAPSHOT</version>
17         <relativePath>../commons/parent</relativePath>
18     </parent>
19
20     <artifactId>integration-tests</artifactId>
21     <description>BGPCEP integration tests</description>
22     <packaging>jar</packaging>
23     <name>${project.artifactId}</name>
24     <prerequisites>
25         <maven>3.0.4</maven>
26     </prerequisites>
27
28     <repositories>
29         <repository>
30             <id>opendaylight-mirror</id>
31             <name>opendaylight-mirror</name>
32             <url>${nexusproxy}/groups/public/</url>
33             <snapshots>
34                 <enabled>false</enabled>
35             </snapshots>
36             <releases>
37                 <enabled>true</enabled>
38                 <updatePolicy>never</updatePolicy>
39             </releases>
40         </repository>
41     </repositories>
42
43     <properties>
44         <exam.version>3.3.0</exam.version>
45         <url.version>1.6.0</url.version>
46         <felix.version>4.2.1</felix.version>
47         <antlr.version>4.0</antlr.version>
48         <yang-concepts.version>0.1.1-SNAPSHOT</yang-concepts.version>
49         <xtend-lib-osgi.version>2.4.3</xtend-lib-osgi.version>
50         <logback-classic.version>1.0.9</logback-classic.version>
51         <moxy.controller.version>2.5.0</moxy.controller.version>
52     </properties>
53
54
55
56     <build>
57         <plugins>
58             <plugin>
59                 <groupId>org.ops4j.pax.exam</groupId>
60                 <artifactId>maven-paxexam-plugin</artifactId>
61                 <version>1.2.4</version>
62                 <executions>
63                     <execution>
64                         <id>generate-config</id>
65                         <goals>
66                             <goal>generate-depends-file</goal>
67                         </goals>
68                     </execution>
69                 </executions>
70             </plugin>
71
72         <!--This plugin's configuration is used to store Eclipse
73             m2e settings only. It has no influence on the Maven build itself. -->
74             <plugin>
75                 <groupId>org.eclipse.m2e</groupId>
76                 <artifactId>lifecycle-mapping</artifactId>
77                 <version>1.0.0</version>
78                 <configuration>
79                     <lifecycleMappingMetadata>
80                         <pluginExecutions>
81                             <pluginExecution>
82                                 <pluginExecutionFilter>
83                                     <groupId>
84                                         org.ops4j.pax.exam
85                                     </groupId>
86                                     <artifactId>
87                                         maven-paxexam-plugin
88                                     </artifactId>
89                                     <versionRange>
90                                         [1.2.4,)
91                                     </versionRange>
92                                     <goals>
93                                         <goal>
94                                             generate-depends-file
95                                         </goal>
96                                     </goals>
97                                 </pluginExecutionFilter>
98                                 <action>
99                                     <ignore></ignore>
100                                 </action>
101                             </pluginExecution>
102                         </pluginExecutions>
103                     </lifecycleMappingMetadata>
104                 </configuration>
105             </plugin>
106         </plugins>
107     </build>
108
109         <dependencies>
110         <dependency>
111             <groupId>org.opendaylight.controller.thirdparty</groupId>
112             <artifactId>exificient</artifactId>
113             <version>0.9.2-SNAPSHOT</version>
114         </dependency>
115         <dependency>
116             <groupId>ch.qos.logback</groupId>
117             <artifactId>logback-classic</artifactId>
118             <version>${logback-classic.version}</version>
119             <scope>test</scope>
120         </dependency>
121         <dependency>
122             <groupId>org.opendaylight.controller</groupId>
123             <artifactId>logback-config</artifactId>
124             <version>${controller.config.version}</version>
125             <scope>test</scope>
126         </dependency>
127         <dependency>
128             <groupId>org.opendaylight.controller</groupId>
129             <artifactId>config-manager</artifactId>
130             <version>${controller.config.version}</version>
131             <scope>test</scope>
132         </dependency>
133         <dependency>
134             <groupId>org.opendaylight.controller</groupId>
135             <artifactId>config-netconf-connector</artifactId>
136             <version>${controller.config.version}</version>
137             <scope>test</scope>
138         </dependency>
139         <dependency>
140             <groupId>org.opendaylight.controller</groupId>
141             <artifactId>yang-jmx-generator</artifactId>
142             <version>${controller.config.version}</version>
143             <scope>test</scope>
144         </dependency>
145         <dependency>
146             <groupId>org.opendaylight.controller</groupId>
147             <artifactId>netconf-monitoring</artifactId>
148             <version>${controller.config.version}</version>
149             <scope>test</scope>
150         </dependency>
151         <dependency>
152             <groupId>org.opendaylight.controller</groupId>
153             <artifactId>netconf-impl</artifactId>
154             <version>${controller.config.version}</version>
155             <scope>test</scope>
156         </dependency>
157
158         <dependency>
159             <groupId>org.opendaylight.controller</groupId>
160             <artifactId>ietf-netconf-monitoring</artifactId>
161             <version>${controller.config.version}</version>
162             <scope>test</scope>
163         </dependency>
164         <dependency>
165             <groupId>org.opendaylight.controller</groupId>
166             <artifactId>yang-store-impl</artifactId>
167             <version>${controller.config.version}</version>
168             <scope>test</scope>
169         </dependency>
170         <dependency>
171             <groupId>org.opendaylight.controller</groupId>
172             <artifactId>config-persister-impl</artifactId>
173             <version>${controller.config.version}</version>
174             <scope>test</scope>
175         </dependency>
176         <dependency>
177             <groupId>org.opendaylight.controller</groupId>
178             <artifactId>config-persister-file-xml-adapter</artifactId>
179             <version>${controller.config.version}</version>
180             <scope>test</scope>
181         </dependency>
182
183         <dependency>
184             <groupId>org.eclipse.persistence</groupId>
185             <artifactId>org.eclipse.persistence.moxy</artifactId>
186             <version>${moxy.controller.version}</version>
187         </dependency>
188         <dependency>
189             <groupId>org.eclipse.persistence</groupId>
190             <artifactId>org.eclipse.persistence.core</artifactId>
191             <version>${moxy.controller.version}</version>
192         </dependency>
193         <dependency>
194             <groupId>org.slf4j</groupId>
195             <artifactId>slf4j-api</artifactId>
196             <scope>test</scope>
197         </dependency>
198         <dependency>
199             <groupId>org.opendaylight.yangtools.thirdparty</groupId>
200             <artifactId>antlr4-runtime-osgi-nohead</artifactId>
201             <version>${antlr.version}</version>
202             <scope>test</scope>
203         </dependency>
204         <dependency>
205             <groupId>org.opendaylight.controller</groupId>
206             <artifactId>sal-binding-api</artifactId>
207             <scope>test</scope>
208         </dependency>
209         <dependency>
210             <groupId>${project.groupId}</groupId>
211             <artifactId>pcep-topology-api</artifactId>
212             <version>${project.version}</version>
213             <scope>test</scope>
214         </dependency>
215         <dependency>
216             <groupId>${project.groupId}</groupId>
217             <artifactId>pcep-tunnel-api</artifactId>
218             <version>${project.version}</version>
219             <scope>test</scope>
220         </dependency>
221         <dependency>
222             <groupId>${project.groupId}</groupId>
223             <artifactId>pcep-api</artifactId>
224             <version>${project.version}</version>
225             <scope>test</scope>
226         </dependency>
227         <dependency>
228             <groupId>${project.groupId}</groupId>
229             <artifactId>topology-api</artifactId>
230             <version>${project.version}</version>
231             <scope>test</scope>
232         </dependency>
233         <dependency>
234             <groupId>${project.groupId}</groupId>
235             <artifactId>programming-topology-api</artifactId>
236             <version>${project.version}</version>
237             <scope>test</scope>
238         </dependency>
239         <dependency>
240                         <groupId>${project.groupId}</groupId>
241                         <artifactId>bgp-parser-mock</artifactId>
242             <version>${project.version}</version>
243             <scope>test</scope>
244         </dependency>
245         <dependency>
246             <groupId>${project.groupId}</groupId>
247             <artifactId>bgp-rib-mock</artifactId>
248             <version>${project.version}</version>
249             <scope>test</scope>
250         </dependency>
251         <dependency>
252             <groupId>${project.groupId}</groupId>
253             <artifactId>bgp-testtool</artifactId>
254             <version>${project.version}</version>
255             <scope>test</scope>
256         </dependency>
257         <dependency>
258             <groupId>${project.groupId}</groupId>
259             <artifactId>pcep-testtool</artifactId>
260             <version>${project.version}</version>
261             <scope>test</scope>
262         </dependency>
263
264         <dependency>
265             <groupId>${project.groupId}</groupId>
266             <artifactId>programming-api</artifactId>
267             <version>${project.version}</version>
268             <scope>test</scope>
269         </dependency>
270         <dependency>
271             <groupId>${project.groupId}</groupId>
272             <artifactId>programming-tunnel-api</artifactId>
273             <version>${project.version}</version>
274             <scope>test</scope>
275         </dependency>
276         <dependency>
277             <groupId>${project.groupId}</groupId>
278             <artifactId>topology-api</artifactId>
279             <version>${project.version}</version>
280             <scope>test</scope>
281         </dependency>
282         <dependency>
283             <groupId>${project.groupId}</groupId>
284             <artifactId>topology-segment-routing</artifactId>
285             <version>${project.version}</version>
286             <scope>test</scope>
287         </dependency>
288         <dependency>
289             <groupId>${project.groupId}</groupId>
290             <artifactId>topology-tunnel-api</artifactId>
291             <version>${project.version}</version>
292             <scope>test</scope>
293         </dependency>
294
295         <dependency>
296             <groupId>org.opendaylight.controller</groupId>
297             <artifactId>sal-binding-broker-impl</artifactId>
298             <exclusions>
299                 <exclusion>
300                     <groupId>xml-apis</groupId>
301                     <artifactId>xml-apis</artifactId>
302                 </exclusion>
303             </exclusions>
304             <scope>test</scope>
305         </dependency>
306         <dependency>
307             <groupId>org.opendaylight.controller</groupId>
308             <artifactId>sal-binding-util</artifactId>
309             <scope>test</scope>
310         </dependency>
311         <dependency>
312             <groupId>org.opendaylight.controller</groupId>
313             <artifactId>protocol-framework</artifactId>
314         </dependency>
315         <dependency>
316             <groupId>org.opendaylight.yangtools</groupId>
317             <artifactId>concepts</artifactId>
318             <version>0.6.0-SNAPSHOT</version>
319             <scope>test</scope>
320         </dependency>
321         <dependency>
322             <groupId>org.opendaylight.yangtools</groupId>
323             <artifactId>yang-binding</artifactId>
324             <scope>test</scope>
325         </dependency>
326         <dependency>
327             <groupId>org.opendaylight.yangtools</groupId>
328             <artifactId>yang-common</artifactId>
329             <scope>test</scope>
330         </dependency>
331         <dependency>
332             <groupId>org.opendaylight.yangtools.thirdparty</groupId>
333             <artifactId>xtend-lib-osgi</artifactId>
334             <version>${xtend-lib-osgi.version}</version>
335             <scope>test</scope>
336         </dependency>
337
338         <dependency>
339             <groupId>com.google.guava</groupId>
340             <artifactId>guava</artifactId>
341             <scope>test</scope>
342         </dependency>
343         <dependency>
344             <groupId>org.ops4j.pax.exam</groupId>
345             <artifactId>pax-exam-container-native</artifactId>
346             <version>${exam.version}</version>
347             <scope>test</scope>
348         </dependency>
349         <dependency>
350             <groupId>org.ops4j.pax.exam</groupId>
351             <artifactId>pax-exam-junit4</artifactId>
352             <version>${exam.version}</version>
353             <scope>test</scope>
354         </dependency>
355         <dependency>
356             <groupId>org.ops4j.pax.exam</groupId>
357             <artifactId>pax-exam-link-mvn</artifactId>
358             <version>${exam.version}</version>
359             <scope>test</scope>
360         </dependency>
361         <dependency>
362             <groupId>org.ops4j.pax.url</groupId>
363             <artifactId>pax-url-aether</artifactId>
364             <version>${url.version}</version>
365             <scope>test</scope>
366         </dependency>
367         <dependency>
368             <groupId>equinoxSDK381</groupId>
369             <artifactId>org.eclipse.osgi</artifactId>
370             <version>3.8.1.v20120830-144521</version>
371             <scope>test</scope>
372         </dependency>
373         <dependency>
374             <groupId>org.opendaylight.yangtools</groupId>
375             <artifactId>mockito-configuration</artifactId>
376         </dependency>
377     </dependencies>
378 </project>