Integrate controller-2.0.1
[genius.git] / mdsalutil / mdsalutil-testutils / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
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>binding-parent</artifactId>
16     <version>0.9.0-SNAPSHOT</version>
17     <relativePath>../../commons/binding-parent</relativePath>
18   </parent>
19
20   <groupId>org.opendaylight.genius</groupId>
21   <artifactId>mdsalutil-testutils</artifactId>
22   <!-- <name> formatting is used by autorelease to parse and notify projects on
23        build failure. Please do not modify this unless you have a good reason. -->
24   <name>ODL :: genius :: ${project.artifactId}</name>
25
26   <dependencies>
27     <dependency>
28       <groupId>org.opendaylight.genius</groupId>
29       <artifactId>mdsalutil-api</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.genius</groupId>
33       <artifactId>mdsalutil-api</artifactId>
34       <version>${project.version}</version>
35       <type>test-jar</type>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.serviceutils</groupId>
39       <artifactId>tools-testutils</artifactId>
40       <version>0.6.0-SNAPSHOT</version>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.yangtools</groupId>
44       <!-- mdsalutil-api (test-jar) needs this, but cannot transitively inherit it (because it is and has to be <scope>test there) -->
45       <artifactId>testutils</artifactId>
46       <scope>compile</scope>
47     </dependency>
48     <dependency>
49       <groupId>org.awaitility</groupId>
50       <artifactId>awaitility</artifactId>
51       <scope>compile</scope> <!-- Do *NOT* use <scope>test</scope> here, because this is a testutils -->
52     </dependency>
53     <dependency>
54       <groupId>com.google.inject</groupId>
55       <artifactId>guice</artifactId>
56       <scope>compile</scope>
57     </dependency>
58     <dependency>
59       <groupId>com.mycila.guice.extensions</groupId>
60       <artifactId>mycila-guice-jsr250</artifactId>
61       <scope>compile</scope>
62     </dependency>
63     <dependency>
64       <groupId>com.google.truth</groupId>
65       <artifactId>truth</artifactId>
66       <scope>compile</scope>
67     </dependency>
68     <dependency>
69       <groupId>org.mockito</groupId>
70       <artifactId>mockito-core</artifactId>
71       <scope>compile</scope>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.mdsal</groupId>
75       <artifactId>mdsal-binding-dom-adapter</artifactId>
76       <type>test-jar</type>
77       <scope>compile</scope>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.mdsal</groupId>
81       <artifactId>mdsal-binding-test-utils</artifactId>
82       <scope>compile</scope>
83     </dependency>
84     <dependency>
85       <groupId>org.opendaylight.infrautils</groupId>
86       <artifactId>jobcoordinator-impl</artifactId>
87       <scope>compile</scope>
88     </dependency>
89     <dependency>
90       <groupId>org.opendaylight.infrautils</groupId>
91       <artifactId>metrics-impl-test</artifactId>
92       <version>${genius.infrautils.version}</version>
93       <scope>compile</scope>
94     </dependency>
95     <dependency>
96       <groupId>org.apache.aries.blueprint</groupId>
97       <artifactId>blueprint-maven-plugin-annotation</artifactId>
98       <optional>true</optional>
99     </dependency>
100
101     <!-- Now all <scope>test here: -->
102     <dependency>
103       <groupId>org.opendaylight.infrautils</groupId>
104       <artifactId>infrautils-testutils</artifactId>
105     </dependency>
106     <dependency>
107       <groupId>org.opendaylight.infrautils</groupId>
108       <artifactId>inject.guice.testutils</artifactId>
109     </dependency>
110     <dependency>
111       <groupId>org.opendaylight.controller</groupId>
112       <artifactId>sal-test-model</artifactId>
113       <scope>test</scope>
114     </dependency>
115   </dependencies>
116 </project>