Merge "Adding dest IP/MAC in ArpResponseReceived"
[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   <!-- <name> formatting is used by autorelease to parse and notify projects on
24        build failure. Please do not modify this unless you have a good reason. -->
25   <name>ODL :: genius :: ${project.artifactId}</name>
26
27   <dependencies>
28     <!-- Do *NOT* use <scope>test here... the project which depends on this project will use <scope>test for
29          its <artifactId>testutils dependency, but here we do not want that (that's the whole point of this POM).
30          Instead, we set <scope>compile, to overwrite <scope>test which at least some of these have as default -->
31     <dependency>
32       <groupId>junit</groupId>
33       <artifactId>junit</artifactId>
34       <scope>compile</scope>
35     </dependency>
36     <dependency>
37       <groupId>org.mockito</groupId>
38       <artifactId>mockito-core</artifactId>
39       <scope>compile</scope>
40     </dependency>
41     <dependency>
42       <groupId>com.google.truth</groupId>
43       <artifactId>truth</artifactId>
44       <scope>compile</scope>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.yangtools</groupId>
48       <artifactId>testutils</artifactId>
49       <scope>compile</scope>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.infrautils</groupId>
53       <artifactId>infrautils-testutils</artifactId>
54       <version>${genius.infrautils.version}</version>
55       <scope>compile</scope>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.infrautils</groupId>
59       <artifactId>inject.guice.testutils</artifactId>
60       <version>${genius.infrautils.version}</version>
61       <scope>compile</scope>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.mdsal</groupId>
65       <artifactId>mdsal-binding-test-utils</artifactId>
66       <scope>compile</scope>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.controller</groupId>
70       <artifactId>sal-binding-broker-impl</artifactId>
71       <type>test-jar</type>
72       <scope>compile</scope>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.genius</groupId>
76       <artifactId>mdsalutil-api</artifactId>
77       <version>${genius.mdsalutil.version}</version>
78       <type>test-jar</type>
79       <scope>compile</scope>
80     </dependency>
81   </dependencies>
82 </project>