Remove commented-out dependencies
[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>binding-parent</artifactId>
16     <version>0.9.0-SNAPSHOT</version>
17     <relativePath>../binding-parent</relativePath>
18   </parent>
19
20   <groupId>org.opendaylight.genius</groupId>
21   <artifactId>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>${project.groupId}</groupId>
29       <artifactId>interfacemanager-api</artifactId>
30     </dependency>
31
32     <!-- Do *NOT* use <scope>test here... the project which depends on this project will use <scope>test for
33          its <artifactId>testutils dependency, but here we do not want that (that's the whole point of this POM).
34          Instead, we set <scope>compile, to overwrite <scope>test which at least some of these have as default -->
35     <dependency>
36       <groupId>junit</groupId>
37       <artifactId>junit</artifactId>
38       <scope>compile</scope>
39     </dependency>
40     <dependency>
41       <groupId>org.mockito</groupId>
42       <artifactId>mockito-core</artifactId>
43       <scope>compile</scope>
44     </dependency>
45     <dependency>
46       <groupId>com.google.truth</groupId>
47       <artifactId>truth</artifactId>
48       <scope>compile</scope>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.yangtools</groupId>
52       <artifactId>testutils</artifactId>
53       <scope>compile</scope>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.infrautils</groupId>
57       <artifactId>infrautils-testutils</artifactId>
58       <scope>compile</scope>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.infrautils</groupId>
62       <artifactId>inject.guice.testutils</artifactId>
63       <scope>compile</scope>
64     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.mdsal</groupId>
67       <artifactId>mdsal-binding-test-utils</artifactId>
68       <scope>compile</scope>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.genius</groupId>
72       <artifactId>mdsalutil-api</artifactId>
73       <version>${project.version}</version>
74       <type>test-jar</type>
75       <scope>compile</scope>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.genius</groupId>
79       <artifactId>idmanager-api</artifactId>
80       <version>${project.version}</version>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.genius</groupId>
84       <artifactId>itm-api</artifactId>
85     </dependency>
86   </dependencies>
87 </project>