Update to work on Sodium SR1
[l2switch.git] / packethandler / model / 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" 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.l2switch</groupId>
6     <artifactId>l2switch-parent</artifactId>
7     <version>0.8.0-SNAPSHOT</version>
8     <relativePath>../../parent</relativePath>
9   </parent>
10   <groupId>org.opendaylight.l2switch.packethandler</groupId>
11   <artifactId>packethandler-model</artifactId>
12   <packaging>bundle</packaging>
13
14   <dependencies>
15     <dependency>
16       <groupId>org.opendaylight.openflowplugin.model</groupId>
17       <artifactId>model-flow-service</artifactId>
18     </dependency>
19     <dependency>
20       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
21       <artifactId>rfc6991-ietf-yang-types</artifactId>
22     </dependency>
23   </dependencies>
24
25   <build>
26     <plugins>
27       <plugin>
28         <groupId>org.apache.felix</groupId>
29         <artifactId>maven-bundle-plugin</artifactId>
30         <extensions>true</extensions>
31         <configuration>
32           <instructions>
33             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
34             <Import-Package>org.opendaylight.yangtools.yang.binding.annotations, *</Import-Package>
35           </instructions>
36         </configuration>
37       </plugin>
38     </plugins>
39   </build>
40 </project>