Update to work on Sodium SR1
[l2switch.git] / packethandler / implementation / 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   <parent>
6     <groupId>org.opendaylight.l2switch</groupId>
7     <artifactId>l2switch-parent</artifactId>
8     <version>0.8.0-SNAPSHOT</version>
9     <relativePath>../../parent</relativePath>
10   </parent>
11   <groupId>org.opendaylight.l2switch.packethandler</groupId>
12   <artifactId>packethandler-impl</artifactId>
13   <packaging>bundle</packaging>
14
15   <dependencies>
16     <dependency>
17       <groupId>org.opendaylight.l2switch.packethandler</groupId>
18       <artifactId>packethandler-model</artifactId>
19     </dependency>
20     <dependency>
21       <groupId>junit</groupId>
22       <artifactId>junit</artifactId>
23       <scope>test</scope>
24     </dependency>
25     <dependency>
26       <groupId>org.mockito</groupId>
27       <artifactId>mockito-core</artifactId>
28       <scope>test</scope>
29     </dependency>
30     <dependency>
31       <groupId>org.opendaylight.controller</groupId>
32       <artifactId>sal-binding-api</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.openflowplugin.model</groupId>
36       <artifactId>model-flow-service</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>com.google.code.findbugs</groupId>
40       <artifactId>jsr305</artifactId>
41       <optional>true</optional>
42     </dependency>
43   </dependencies>
44
45   <build>
46     <plugins>
47       <plugin>
48         <groupId>org.apache.felix</groupId>
49         <artifactId>maven-bundle-plugin</artifactId>
50         <extensions>true</extensions>
51         <configuration>
52           <instructions>
53             <Export-Package>
54               org.opendaylight.l2switch.packethandler.decoders,
55               org.opendaylight.l2switch.packethandler.decoders.utils,
56             </Export-Package>
57             <Import-Package>*</Import-Package>
58           </instructions>
59         </configuration>
60       </plugin>
61     </plugins>
62   </build>
63
64 </project>