Remove unneeded dependencies
[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>org.opendaylight.openflowplugin.model</groupId>
22       <artifactId>model-flow-service</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>org.opendaylight.mdsal</groupId>
26       <artifactId>mdsal-binding-api</artifactId>
27     </dependency>
28   </dependencies>
29
30   <build>
31     <plugins>
32       <plugin>
33         <groupId>org.apache.felix</groupId>
34         <artifactId>maven-bundle-plugin</artifactId>
35         <extensions>true</extensions>
36         <configuration>
37           <instructions>
38             <Export-Package>
39               org.opendaylight.l2switch.packethandler.decoders,
40               org.opendaylight.l2switch.packethandler.decoders.utils,
41             </Export-Package>
42             <Import-Package>*</Import-Package>
43           </instructions>
44         </configuration>
45       </plugin>
46     </plugins>
47   </build>
48 </project>