4afa8604e12938b936fa395061cc294a3e67cf2c
[openflowplugin.git] / openflowplugin-common / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4   <modelVersion>4.0.0</modelVersion>
5
6   <parent>
7     <groupId>org.opendaylight.openflowplugin</groupId>
8     <artifactId>openflowplugin-parent</artifactId>
9     <version>0.8.0-SNAPSHOT</version>
10     <relativePath>../parent</relativePath>
11   </parent>
12
13   <artifactId>openflowplugin-common</artifactId>
14   <packaging>bundle</packaging>
15
16   <dependencies>
17     <dependency>
18       <groupId>com.google.guava</groupId>
19       <artifactId>guava</artifactId>
20     </dependency>
21     <dependency>
22       <groupId>org.slf4j</groupId>
23       <artifactId>slf4j-api</artifactId>
24     </dependency>
25     <dependency>
26         <groupId>org.opendaylight.controller</groupId>
27         <artifactId>sal-binding-api</artifactId>
28     </dependency>
29
30     <dependency>
31       <groupId>junit</groupId>
32       <artifactId>junit</artifactId>
33       <scope>test</scope>
34     </dependency>
35     <dependency>
36       <groupId>org.mockito</groupId>
37       <artifactId>mockito-core</artifactId>
38       <scope>test</scope>
39     </dependency>
40     <dependency>
41       <groupId>org.slf4j</groupId>
42       <artifactId>slf4j-log4j12</artifactId>
43       <scope>test</scope>
44     </dependency>
45   </dependencies>
46
47   <build>
48     <plugins>
49       <!-- TODO Remove this when we upgrade to odlparent with a fix for ODLPARENT-146 -->
50       <plugin>
51         <groupId>org.codehaus.mojo</groupId>
52         <artifactId>findbugs-maven-plugin</artifactId>
53         <configuration>
54           <failOnError>false</failOnError>
55         </configuration>
56       </plugin>
57     </plugins>
58   </build>
59 </project>
60