ChainableDataTreeChangeListener with addBeforeListener()
[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
23   <dependencies>
24     <dependency>
25       <groupId>org.opendaylight.genius</groupId>
26       <artifactId>mdsalutil-api</artifactId>
27       <version>${project.version}</version>
28     </dependency>
29     <dependency>
30       <groupId>org.opendaylight.genius</groupId>
31       <artifactId>mdsalutil-api</artifactId>
32       <version>${project.version}</version>
33       <type>test-jar</type>
34     </dependency>
35     <dependency>
36       <groupId>org.awaitility</groupId>
37       <artifactId>awaitility</artifactId>
38       <scope>compile</scope> <!-- Do *NOT* use <scope>test</scope> here, because this is a testutils -->
39     </dependency>
40     <dependency>
41       <groupId>org.hamcrest</groupId>
42       <artifactId>hamcrest-core</artifactId>
43       <!-- Hamcrest is internally used by Awaitility, so must be compile instead of test scope for build to work -->
44       <scope>compile</scope>
45     </dependency>
46     <dependency>
47       <groupId>org.hamcrest</groupId>
48       <artifactId>hamcrest-library</artifactId>
49       <!-- Hamcrest is internally used by Awaitility, so must be compile instead of test scope for build to work -->
50       <scope>compile</scope>
51     </dependency>
52     <dependency>
53       <groupId>com.google.inject</groupId>
54       <artifactId>guice</artifactId>
55       <scope>compile</scope>
56     </dependency>
57     <dependency>
58       <groupId>com.mycila.guice.extensions</groupId>
59       <artifactId>mycila-guice-jsr250</artifactId>
60       <scope>compile</scope>
61     </dependency>
62
63     <dependency>
64       <groupId>org.opendaylight.infrautils</groupId>
65       <artifactId>infrautils-testutils</artifactId>
66       <version>${genius.infrautils.version}</version>
67       <scope>test</scope>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.infrautils</groupId>
71       <artifactId>inject.guice.testutils</artifactId>
72       <version>${genius.infrautils.version}</version>
73       <scope>test</scope>
74     </dependency>
75     <dependency>
76       <groupId>com.google.truth</groupId>
77       <artifactId>truth</artifactId>
78       <scope>test</scope>
79     </dependency>
80   </dependencies>
81
82   <build>
83     <plugins>
84       <plugin>
85         <groupId>org.apache.maven.plugins</groupId>
86         <artifactId>maven-checkstyle-plugin</artifactId>
87         <configuration>
88           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
89         </configuration>
90       </plugin>
91       <plugin>
92         <groupId>org.codehaus.mojo</groupId>
93         <artifactId>findbugs-maven-plugin</artifactId>
94         <configuration>
95           <failOnError>true</failOnError>
96         </configuration>
97       </plugin>
98     </plugins>
99   </build>
100 </project>