Merge "Utility api to configure icmpv6 type"
[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>config-parent</artifactId>
16     <version>0.3.0-SNAPSHOT</version>
17     <relativePath>../../commons/config-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.yangtools</groupId>
40       <!-- mdsalutil-api (test-jar) needs this, but cannot transitively inherit it (because it is and has to be <scope>test there) -->
41       <artifactId>testutils</artifactId>
42       <scope>compile</scope>
43     </dependency>
44     <dependency>
45       <groupId>org.awaitility</groupId>
46       <artifactId>awaitility</artifactId>
47       <scope>compile</scope> <!-- Do *NOT* use <scope>test</scope> here, because this is a testutils -->
48     </dependency>
49     <dependency>
50       <groupId>org.hamcrest</groupId>
51       <artifactId>hamcrest-core</artifactId>
52       <!-- Hamcrest is internally used by Awaitility, so must be compile instead of test scope for build to work -->
53       <scope>compile</scope>
54     </dependency>
55     <dependency>
56       <groupId>org.hamcrest</groupId>
57       <artifactId>hamcrest-library</artifactId>
58       <!-- Hamcrest is internally used by Awaitility, so must be compile instead of test scope for build to work -->
59       <scope>compile</scope>
60     </dependency>
61     <dependency>
62       <groupId>com.google.inject</groupId>
63       <artifactId>guice</artifactId>
64       <scope>compile</scope>
65     </dependency>
66     <dependency>
67       <groupId>com.mycila.guice.extensions</groupId>
68       <artifactId>mycila-guice-jsr250</artifactId>
69       <scope>compile</scope>
70     </dependency>
71
72     <dependency>
73       <groupId>org.opendaylight.infrautils</groupId>
74       <artifactId>infrautils-testutils</artifactId>
75       <version>${genius.infrautils.version}</version>
76       <scope>test</scope>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.infrautils</groupId>
80       <artifactId>inject.guice.testutils</artifactId>
81       <version>${genius.infrautils.version}</version>
82       <scope>test</scope>
83     </dependency>
84     <dependency>
85       <groupId>com.google.truth</groupId>
86       <artifactId>truth</artifactId>
87       <scope>test</scope>
88     </dependency>
89   </dependencies>
90
91   <build>
92     <plugins>
93       <plugin>
94         <groupId>org.apache.maven.plugins</groupId>
95         <artifactId>maven-checkstyle-plugin</artifactId>
96         <configuration>
97           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
98         </configuration>
99       </plugin>
100       <plugin>
101         <groupId>org.codehaus.mojo</groupId>
102         <artifactId>findbugs-maven-plugin</artifactId>
103         <configuration>
104           <failOnError>true</failOnError>
105         </configuration>
106       </plugin>
107     </plugins>
108   </build>
109 </project>