Bump versions by x.(y+1).z for next dev cycle
[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.6.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       <version>${project.version}</version>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.genius</groupId>
34       <artifactId>mdsalutil-api</artifactId>
35       <version>${project.version}</version>
36       <type>test-jar</type>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.serviceutils</groupId>
40       <artifactId>tools-testutils</artifactId>
41       <version>0.3.0-SNAPSHOT</version>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.yangtools</groupId>
45       <!-- mdsalutil-api (test-jar) needs this, but cannot transitively inherit it (because it is and has to be <scope>test there) -->
46       <artifactId>testutils</artifactId>
47       <scope>compile</scope>
48     </dependency>
49     <dependency>
50       <groupId>org.awaitility</groupId>
51       <artifactId>awaitility</artifactId>
52       <scope>compile</scope> <!-- Do *NOT* use <scope>test</scope> here, because this is a testutils -->
53     </dependency>
54     <dependency>
55       <groupId>org.hamcrest</groupId>
56       <artifactId>hamcrest-core</artifactId>
57       <!-- Hamcrest is internally used by Awaitility, so must be compile instead of test scope for build to work -->
58       <scope>compile</scope>
59     </dependency>
60     <dependency>
61       <groupId>org.hamcrest</groupId>
62       <artifactId>hamcrest-library</artifactId>
63       <!-- Hamcrest is internally used by Awaitility, so must be compile instead of test scope for build to work -->
64       <scope>compile</scope>
65     </dependency>
66     <dependency>
67       <groupId>com.google.inject</groupId>
68       <artifactId>guice</artifactId>
69       <scope>compile</scope>
70     </dependency>
71     <dependency>
72       <groupId>com.mycila.guice.extensions</groupId>
73       <artifactId>mycila-guice-jsr250</artifactId>
74       <scope>compile</scope>
75     </dependency>
76     <dependency>
77       <groupId>com.google.truth</groupId>
78       <artifactId>truth</artifactId>
79       <scope>compile</scope>
80     </dependency>
81     <dependency>
82       <groupId>org.mockito</groupId>
83       <artifactId>mockito-core</artifactId>
84       <scope>compile</scope>
85     </dependency>
86     <dependency>
87       <groupId>org.opendaylight.controller</groupId>
88       <artifactId>sal-binding-broker-impl</artifactId>
89       <scope>compile</scope>
90     </dependency>
91     <dependency>
92       <groupId>org.opendaylight.controller</groupId>
93       <artifactId>sal-binding-broker-impl</artifactId>
94       <type>test-jar</type>
95       <scope>compile</scope>
96     </dependency>
97     <dependency>
98       <groupId>org.opendaylight.infrautils</groupId>
99       <artifactId>jobcoordinator-impl</artifactId>
100       <version>${genius.infrautils.version}</version>
101       <scope>compile</scope>
102     </dependency>
103     <dependency>
104       <groupId>org.opendaylight.infrautils</groupId>
105       <artifactId>metrics-impl-test</artifactId>
106       <version>${genius.infrautils.version}</version>
107       <scope>compile</scope>
108     </dependency>
109     <dependency>
110       <groupId>org.ops4j.pax.cdi</groupId>
111       <artifactId>pax-cdi-api</artifactId>
112       <optional>true</optional>
113     </dependency>
114
115     <!-- Now all <scope>test here: -->
116     <dependency>
117       <groupId>org.opendaylight.infrautils</groupId>
118       <artifactId>infrautils-testutils</artifactId>
119       <version>${genius.infrautils.version}</version>
120       <scope>test</scope>
121     </dependency>
122     <dependency>
123       <groupId>org.opendaylight.infrautils</groupId>
124       <artifactId>inject.guice.testutils</artifactId>
125       <version>${genius.infrautils.version}</version>
126       <scope>test</scope>
127     </dependency>
128     <dependency>
129       <groupId>org.opendaylight.controller</groupId>
130       <artifactId>sal-test-model</artifactId>
131       <scope>test</scope>
132     </dependency>
133   </dependencies>
134 </project>