Merge "OPNFLWPLUG-1076 Migrate lldp-speaker, forwardingrules-sync and arbitratorrecon...
[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.10.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               <configuration>
26                 <scanPaths>
27                   <!-- This is code migrated from openflowjava project and the java package
28                        does not match artifact groupId, we therefore need to override it.
29                   -->
30                   <scanPath>org.opendaylight.openflowjava</scanPath>
31                 </scanPaths>
32               </configuration>
33
34             </plugin>
35             <plugin>
36               <groupId>org.apache.felix</groupId>
37               <artifactId>maven-bundle-plugin</artifactId>
38               <extensions>true</extensions>
39               <configuration>
40                 <instructions>
41                     <Export-Package>
42                       org.opendaylight.openflowjava.protocol.impl.*,
43                     </Export-Package>
44                 </instructions>
45               </configuration>
46             </plugin>
47             <plugin>
48                 <groupId>org.apache.maven.plugins</groupId>
49                 <artifactId>maven-jar-plugin</artifactId>
50                 <executions>
51                     <execution>
52                         <goals>
53                             <goal>test-jar</goal>
54                         </goals>
55                     </execution>
56                 </executions>
57             </plugin>
58         </plugins>
59     </build>
60
61     <dependencies>
62         <dependency>
63             <groupId>${project.groupId}</groupId>
64             <artifactId>openflow-protocol-api</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>${project.groupId}</groupId>
68             <artifactId>openflow-protocol-spi</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>${project.groupId}</groupId>
72             <artifactId>openflowjava-util</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>io.netty</groupId>
76             <artifactId>netty-handler</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>org.osgi</groupId>
80             <artifactId>org.osgi.core</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>javax.inject</groupId>
84             <artifactId>javax.inject</artifactId>
85             <optional>true</optional>
86         </dependency>
87         <dependency>
88             <groupId>javax.annotation</groupId>
89             <artifactId>javax.annotation-api</artifactId>
90             <optional>true</optional>
91         </dependency>
92         <dependency>
93             <groupId>org.apache.aries.blueprint</groupId>
94             <artifactId>blueprint-maven-plugin-annotation</artifactId>
95             <optional>true</optional>
96         </dependency>
97         <dependency>
98             <groupId>org.slf4j</groupId>
99             <artifactId>slf4j-log4j12</artifactId>
100             <scope>test</scope>
101         </dependency>
102         <dependency>
103             <groupId>org.opendaylight.infrautils</groupId>
104             <artifactId>infrautils-util</artifactId>
105             <version>${infrautils.version}</version>
106         </dependency>
107         <dependency>
108             <groupId>com.google.guava</groupId>
109             <artifactId>guava</artifactId>
110         </dependency>
111         <dependency>
112             <groupId>org.opendaylight.infrautils</groupId>
113             <artifactId>diagstatus-api</artifactId>
114             <version>${infrautils.version}</version>
115         </dependency>
116         <dependency>
117             <groupId>io.netty</groupId>
118             <artifactId>netty-transport-native-epoll</artifactId>
119             <!-- Explicitly bring in the linux classifier, test may fail on 32-bit linux -->
120             <classifier>linux-x86_64</classifier>
121         </dependency>
122         <dependency>
123             <groupId>com.google.code.findbugs</groupId>
124             <artifactId>jsr305</artifactId>
125             <version>3.0.2</version>
126             <optional>true</optional>
127         </dependency>
128     </dependencies>
129 </project>