18b6e0feeb598b97d5ce8d479b882741f7cf9c7e
[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.aries.blueprint</groupId>
24               <artifactId>blueprint-maven-plugin</artifactId>
25             </plugin>
26             <plugin>
27               <groupId>org.apache.felix</groupId>
28               <artifactId>maven-bundle-plugin</artifactId>
29               <extensions>true</extensions>
30               <configuration>
31                 <instructions>
32                     <Export-Package>
33                       org.opendaylight.openflowjava.protocol.impl.*,
34                     </Export-Package>
35                 </instructions>
36               </configuration>
37             </plugin>
38             <plugin>
39                 <groupId>org.apache.maven.plugins</groupId>
40                 <artifactId>maven-jar-plugin</artifactId>
41                 <executions>
42                     <execution>
43                         <goals>
44                             <goal>test-jar</goal>
45                         </goals>
46                     </execution>
47                 </executions>
48             </plugin>
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
60     <dependencies>
61         <dependency>
62             <groupId>${project.groupId}</groupId>
63             <artifactId>openflow-protocol-api</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>${project.groupId}</groupId>
67             <artifactId>openflow-protocol-spi</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>${project.groupId}</groupId>
71             <artifactId>openflowjava-util</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>io.netty</groupId>
75             <artifactId>netty-handler</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>org.osgi</groupId>
79             <artifactId>org.osgi.core</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>javax.inject</groupId>
83             <artifactId>javax.inject</artifactId>
84             <optional>true</optional>
85         </dependency>
86         <dependency>
87             <groupId>org.apache.aries.blueprint</groupId>
88             <artifactId>blueprint-maven-plugin-annotation</artifactId>
89             <optional>true</optional>
90         </dependency>
91         <dependency>
92             <groupId>org.slf4j</groupId>
93             <artifactId>slf4j-log4j12</artifactId>
94             <scope>test</scope>
95         </dependency>
96         <dependency>
97             <groupId>com.google.guava</groupId>
98             <artifactId>guava</artifactId>
99         </dependency>
100         <dependency>
101             <groupId>junit</groupId>
102             <artifactId>junit</artifactId>
103             <scope>test</scope>
104         </dependency>
105         <dependency>
106             <groupId>org.mockito</groupId>
107             <artifactId>mockito-core</artifactId>
108         </dependency>
109         <dependency>
110             <groupId>io.netty</groupId>
111             <artifactId>netty-transport-native-epoll</artifactId>
112             <!-- Explicitly bring in the linux classifier, test may fail on 32-bit linux -->
113             <classifier>linux-x86_64</classifier>
114         </dependency>
115     </dependencies>
116 </project>