5b2cb0969ab0962943b602a202e429d225ed464f
[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.6.0-SNAPSHOT</version>
10     <relativePath>../parent</relativePath>
11   </parent>
12
13   <artifactId>openflowplugin-common</artifactId>
14   <packaging>bundle</packaging>
15
16   <build>
17     <plugins>
18       <plugin>
19         <groupId>org.apache.felix</groupId>
20         <artifactId>maven-bundle-plugin</artifactId>
21       </plugin>
22       <plugin>
23         <groupId>org.apache.maven.plugins</groupId>
24         <artifactId>maven-checkstyle-plugin</artifactId>
25         <configuration>
26           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
27         </configuration>
28       </plugin>
29     </plugins>
30   </build>
31   <dependencies>
32     <dependency>
33       <groupId>com.google.guava</groupId>
34       <artifactId>guava</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.slf4j</groupId>
38       <artifactId>slf4j-api</artifactId>
39     </dependency>
40     <dependency>
41         <groupId>org.opendaylight.controller</groupId>
42         <artifactId>sal-binding-api</artifactId>
43     </dependency>
44
45     <dependency>
46       <groupId>junit</groupId>
47       <artifactId>junit</artifactId>
48       <scope>test</scope>
49     </dependency>
50     <dependency>
51       <groupId>org.mockito</groupId>
52       <artifactId>mockito-core</artifactId>
53       <scope>test</scope>
54     </dependency>
55     <dependency>
56       <groupId>org.slf4j</groupId>
57       <artifactId>slf4j-log4j12</artifactId>
58       <scope>test</scope>
59     </dependency>
60   </dependencies>
61 </project>
62