Remove contact info from pom.xml & fix version inheritance.
[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   </dependencies>
30
31   <build>
32     <plugins>
33       <plugin>
34         <groupId>org.apache.felix</groupId>
35         <artifactId>maven-bundle-plugin</artifactId>
36         <extensions>true</extensions>
37         <configuration>
38           <instructions>
39             <Bundle-Activator>org.opendaylight.l2switch.packethandler.PacketHandlerProvider</Bundle-Activator>
40           </instructions>
41           <manifestLocation>${project.build.directory}/META-INF</manifestLocation>
42         </configuration>
43       </plugin>
44     </plugins>
45   </build>
46
47 </project>