32950541985f2f424aff2909cd7e9877d282b87a
[l2switch.git] / addresstracker / 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.addresstracker</groupId>
11   <artifactId>addresstracker-model</artifactId>
12   <packaging>bundle</packaging>
13
14   <dependencies>
15     <dependency>
16       <groupId>org.opendaylight.controller.model</groupId>
17       <artifactId>model-inventory</artifactId>
18     </dependency>
19     <dependency>
20       <groupId>org.opendaylight.yangtools</groupId>
21       <artifactId>yang-common</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>org.opendaylight.mdsal.model</groupId>
25       <artifactId>ietf-yang-types-20130715</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.l2switch.packethandler</groupId>
29       <artifactId>packethandler-model</artifactId>
30     </dependency>
31   </dependencies>
32
33   <build>
34     <plugins>
35       <plugin>
36         <groupId>org.apache.felix</groupId>
37         <artifactId>maven-bundle-plugin</artifactId>
38         <extensions>true</extensions>
39         <configuration>
40           <instructions>
41             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
42             <Import-Package>org.opendaylight.yangtools.yang.binding.annotations, *</Import-Package>
43           </instructions>
44         </configuration>
45       </plugin>
46     </plugins>
47   </build>
48
49 </project>