Merge "Spec for OF Tunnels"
[genius.git] / commons / testutils / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: --><!--
3 Copyright (c) 2016 Red Hat, Inc. and others.  All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11   <modelVersion>4.0.0</modelVersion>
12
13   <parent>
14     <groupId>org.opendaylight.genius</groupId>
15     <artifactId>config-parent</artifactId>
16     <version>0.2.0-SNAPSHOT</version>
17     <relativePath>../config-parent</relativePath>
18   </parent>
19
20   <groupId>org.opendaylight.genius</groupId>
21   <artifactId>testutils</artifactId>
22   <packaging>pom</packaging>
23
24   <dependencies>
25     <!-- Do *NOT* use <scope>test here... the project which depends on this project will use <scope>test for
26          its <artifactId>testutils dependency, but here we do not want that (that's the whole point of this POM).
27          Instead, we set <scope>compile, to overwrite <scope>test which at least some of these have as default -->
28     <dependency>
29       <groupId>junit</groupId>
30       <artifactId>junit</artifactId>
31       <scope>compile</scope>
32     </dependency>
33     <dependency>
34       <groupId>org.mockito</groupId>
35       <artifactId>mockito-all</artifactId>
36       <scope>compile</scope>
37     </dependency>
38     <dependency>
39       <groupId>com.google.truth</groupId>
40       <artifactId>truth</artifactId>
41       <scope>compile</scope>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.yangtools</groupId>
45       <artifactId>testutils</artifactId>
46       <scope>compile</scope>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.infrautils</groupId>
50       <artifactId>inject.guice.testutils</artifactId>
51       <version>${genius.infrautils.version}</version>
52       <scope>compile</scope>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.mdsal</groupId>
56       <artifactId>mdsal-binding-test-utils</artifactId>
57       <scope>compile</scope>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.controller</groupId>
61       <artifactId>sal-binding-broker-impl</artifactId>
62       <type>test-jar</type>
63       <scope>compile</scope>
64     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.genius</groupId>
67       <artifactId>mdsalutil-api</artifactId>
68       <version>${genius.mdsalutil.version}</version>
69       <type>test-jar</type>
70       <scope>compile</scope>
71     </dependency>
72   </dependencies>
73 </project>