Merge "Fix (some) unlogged Thread death uncaught exceptions, now logged"
[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.2.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.awaitility</groupId>
40       <artifactId>awaitility</artifactId>
41       <scope>compile</scope> <!-- Do *NOT* use <scope>test</scope> here, because this is a testutils -->
42     </dependency>
43     <dependency>
44       <groupId>org.hamcrest</groupId>
45       <artifactId>hamcrest-core</artifactId>
46       <!-- Hamcrest is internally used by Awaitility, so must be compile instead of test scope for build to work -->
47       <scope>compile</scope>
48     </dependency>
49     <dependency>
50       <groupId>org.hamcrest</groupId>
51       <artifactId>hamcrest-library</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>com.google.inject</groupId>
57       <artifactId>guice</artifactId>
58       <scope>compile</scope>
59     </dependency>
60     <dependency>
61       <groupId>com.mycila.guice.extensions</groupId>
62       <artifactId>mycila-guice-jsr250</artifactId>
63       <scope>compile</scope>
64     </dependency>
65
66     <dependency>
67       <groupId>org.opendaylight.infrautils</groupId>
68       <artifactId>infrautils-testutils</artifactId>
69       <version>${genius.infrautils.version}</version>
70       <scope>test</scope>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.infrautils</groupId>
74       <artifactId>inject.guice.testutils</artifactId>
75       <version>${genius.infrautils.version}</version>
76       <scope>test</scope>
77     </dependency>
78     <dependency>
79       <groupId>com.google.truth</groupId>
80       <artifactId>truth</artifactId>
81       <scope>test</scope>
82     </dependency>
83   </dependencies>
84
85   <build>
86     <plugins>
87       <plugin>
88         <groupId>org.apache.maven.plugins</groupId>
89         <artifactId>maven-checkstyle-plugin</artifactId>
90         <configuration>
91           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
92         </configuration>
93       </plugin>
94       <plugin>
95         <groupId>org.codehaus.mojo</groupId>
96         <artifactId>findbugs-maven-plugin</artifactId>
97         <configuration>
98           <failOnError>true</failOnError>
99         </configuration>
100       </plugin>
101     </plugins>
102   </build>
103 </project>