Bump versions by x.(y+1).z for next dev cycle
[openflowplugin.git] / openflowjava / openflow-protocol-impl / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2     <modelVersion>4.0.0</modelVersion>
3     <parent>
4         <groupId>org.opendaylight.openflowplugin.openflowjava</groupId>
5         <artifactId>openflowjava-parent</artifactId>
6         <version>0.8.0-SNAPSHOT</version>
7         <relativePath>../</relativePath>
8     </parent>
9     <artifactId>openflow-protocol-impl</artifactId>
10     <packaging>bundle</packaging>
11     <!-- <name> formatting is used by autorelease to parse and notify projects on
12          build failure. Please do not modify this unless you have a good reason. -->
13     <name>ODL :: openflowjava :: ${project.artifactId}</name>
14     <scm>
15         <url>https://wiki.opendaylight.org/view/Openflow_Protocol_Library:Main</url>
16       <tag>HEAD</tag>
17   </scm>
18
19     <build>
20         <plugins>
21             <plugin>
22               <groupId>org.apache.felix</groupId>
23               <artifactId>maven-bundle-plugin</artifactId>
24               <extensions>true</extensions>
25               <configuration>
26                 <instructions>
27                     <Export-Package>
28                       org.opendaylight.openflowjava.protocol.impl.*,
29                     </Export-Package>
30                 </instructions>
31               </configuration>
32             </plugin>
33             <plugin>
34                 <groupId>org.apache.maven.plugins</groupId>
35                 <artifactId>maven-jar-plugin</artifactId>
36                 <executions>
37                     <execution>
38                         <goals>
39                             <goal>test-jar</goal>
40                         </goals>
41                     </execution>
42                 </executions>
43             </plugin>
44             <!-- TODO Remove this when we upgrade to odlparent with a fix for ODLPARENT-146 -->
45             <plugin>
46                 <groupId>org.codehaus.mojo</groupId>
47                 <artifactId>findbugs-maven-plugin</artifactId>
48                 <configuration>
49                     <failOnError>false</failOnError>
50                 </configuration>
51             </plugin>
52         </plugins>
53     </build>
54
55     <dependencies>
56         <dependency>
57             <groupId>${project.groupId}</groupId>
58             <artifactId>openflow-protocol-api</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>${project.groupId}</groupId>
62             <artifactId>openflow-protocol-spi</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>${project.groupId}</groupId>
66             <artifactId>openflowjava-util</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>io.netty</groupId>
70             <artifactId>netty-handler</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>org.osgi</groupId>
74             <artifactId>org.osgi.core</artifactId>
75         </dependency>
76         <dependency>
77             <groupId>org.slf4j</groupId>
78             <artifactId>slf4j-log4j12</artifactId>
79             <scope>test</scope>
80         </dependency>
81         <dependency>
82             <groupId>com.google.guava</groupId>
83             <artifactId>guava</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>junit</groupId>
87             <artifactId>junit</artifactId>
88             <scope>test</scope>
89         </dependency>
90         <dependency>
91             <groupId>org.mockito</groupId>
92             <artifactId>mockito-core</artifactId>
93         </dependency>
94         <dependency>
95             <groupId>io.netty</groupId>
96             <artifactId>netty-transport-native-epoll</artifactId>
97             <!-- Explicitly bring in the linux classifier, test may fail on 32-bit linux -->
98             <classifier>linux-x86_64</classifier>
99         </dependency>
100     </dependencies>
101 </project>