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