Bump versions by x.(y+1).z for next dev cycle
[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.7.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       <plugin>
30         <groupId>org.codehaus.mojo</groupId>
31         <artifactId>findbugs-maven-plugin</artifactId>
32         <configuration>
33           <failOnError>true</failOnError>
34         </configuration>
35       </plugin>
36     </plugins>
37   </build>
38   <dependencies>
39     <dependency>
40       <groupId>com.google.guava</groupId>
41       <artifactId>guava</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>org.slf4j</groupId>
45       <artifactId>slf4j-api</artifactId>
46     </dependency>
47     <dependency>
48         <groupId>org.opendaylight.controller</groupId>
49         <artifactId>sal-binding-api</artifactId>
50     </dependency>
51
52     <dependency>
53       <groupId>junit</groupId>
54       <artifactId>junit</artifactId>
55       <scope>test</scope>
56     </dependency>
57     <dependency>
58       <groupId>org.mockito</groupId>
59       <artifactId>mockito-core</artifactId>
60       <scope>test</scope>
61     </dependency>
62     <dependency>
63       <groupId>org.slf4j</groupId>
64       <artifactId>slf4j-log4j12</artifactId>
65       <scope>test</scope>
66     </dependency>
67   </dependencies>
68 </project>
69