a07a1336dbd54330e9ff4bdd61bbc130d98ee9cc
[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" 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.1.0-SNAPSHOT</version>
8     <relativePath>../../parent</relativePath>
9   </parent>
10   <groupId>org.opendaylight.l2switch.packethandler</groupId>
11   <artifactId>packethandler-impl</artifactId>
12   <packaging>bundle</packaging>
13
14   <dependencies>
15     <dependency>
16       <groupId>org.opendaylight.controller</groupId>
17       <artifactId>sal</artifactId>
18     </dependency>
19     <dependency>
20       <groupId>org.opendaylight.l2switch.packethandler</groupId>
21       <artifactId>packethandler-model</artifactId>
22       <version>${project.version}</version>
23     </dependency>
24     <dependency>
25       <groupId>junit</groupId>
26       <artifactId>junit</artifactId>
27       <scope>test</scope>
28     </dependency>
29     <dependency>
30       <groupId>org.opendaylight.controller</groupId>
31       <artifactId>sal-binding-api</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.controller.model</groupId>
35       <artifactId>model-flow-service</artifactId>
36     </dependency>
37   </dependencies>
38
39   <build>
40     <plugins>
41       <plugin>
42         <groupId>org.apache.felix</groupId>
43         <artifactId>maven-bundle-plugin</artifactId>
44         <extensions>true</extensions>
45         <configuration>
46           <instructions>
47             <Bundle-Activator>org.opendaylight.l2switch.packethandler.PacketHandlerProvider</Bundle-Activator>
48           </instructions>
49           <manifestLocation>${project.build.directory}/META-INF</manifestLocation>
50         </configuration>
51       </plugin>
52     </plugins>
53   </build>
54
55 </project>