Fix findbugs violations in fcapsapplication
[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>binding-parent</artifactId>
16     <version>0.5.0-SNAPSHOT</version>
17     <relativePath>../../commons/binding-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     <dependency>
72       <groupId>com.google.truth</groupId>
73       <artifactId>truth</artifactId>
74       <scope>compile</scope>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.controller</groupId>
78       <artifactId>sal-binding-broker-impl</artifactId>
79       <scope>compile</scope>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.controller</groupId>
83       <artifactId>sal-binding-broker-impl</artifactId>
84       <type>test-jar</type>
85       <scope>compile</scope>
86     </dependency>
87     <dependency>
88       <groupId>org.opendaylight.infrautils</groupId>
89       <artifactId>jobcoordinator-impl</artifactId>
90       <version>${genius.infrautils.version}</version>
91       <scope>compile</scope>
92     </dependency>
93     <dependency>
94       <groupId>org.opendaylight.infrautils</groupId>
95       <artifactId>metrics-impl-test</artifactId>
96       <version>${genius.infrautils.version}</version>
97       <scope>compile</scope>
98     </dependency>
99     <dependency>
100       <groupId>org.ops4j.pax.cdi</groupId>
101       <artifactId>pax-cdi-api</artifactId>
102       <optional>true</optional>
103     </dependency>
104
105     <!-- Now all <scope>test here: -->
106     <dependency>
107       <groupId>org.opendaylight.infrautils</groupId>
108       <artifactId>infrautils-testutils</artifactId>
109       <version>${genius.infrautils.version}</version>
110       <scope>test</scope>
111     </dependency>
112     <dependency>
113       <groupId>org.opendaylight.infrautils</groupId>
114       <artifactId>inject.guice.testutils</artifactId>
115       <version>${genius.infrautils.version}</version>
116       <scope>test</scope>
117     </dependency>
118     <dependency>
119       <groupId>org.opendaylight.controller</groupId>
120       <artifactId>sal-test-model</artifactId>
121       <scope>test</scope>
122     </dependency>
123   </dependencies>
124
125   <build>
126     <plugins>
127       <plugin>
128         <groupId>org.codehaus.mojo</groupId>
129         <artifactId>findbugs-maven-plugin</artifactId>
130         <configuration>
131           <failOnError>true</failOnError>
132         </configuration>
133       </plugin>
134     </plugins>
135   </build>
136 </project>