Revert last commit.
[l2switch.git] / addresstracker / 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.addresstracker</groupId>
11   <artifactId>addresstracker-impl</artifactId>
12   <packaging>bundle</packaging>
13
14   <build>
15     <plugins>
16       <plugin>
17         <groupId>org.apache.felix</groupId>
18         <artifactId>maven-bundle-plugin</artifactId>
19         <extensions>true</extensions>
20         <configuration>
21           <instructions>
22             <Bundle-Activator>org.opendaylight.l2switch.packethandler.PacketHandlerProvider</Bundle-Activator>
23           </instructions>
24           <manifestLocation>${project.build.directory}/META-INF</manifestLocation>
25         </configuration>
26       </plugin>
27     </plugins>
28   </build>
29
30 </project>