ba652e35a509beeef0ba70ad46b573efeaf43416
[l2switch.git] / hosttracker / 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         <artifactId>hosttracker.aggregator</artifactId>
6         <groupId>org.opendaylight.l2switch.hosttracker</groupId>
7         <version>0.8.0-SNAPSHOT</version>
8     </parent>
9     <artifactId>hosttracker-model</artifactId>
10     <packaging>bundle</packaging>
11
12     <dependencies>
13         <dependency>
14             <groupId>org.opendaylight.l2switch.addresstracker</groupId>
15             <artifactId>addresstracker-model</artifactId>
16             <version>${project.version}</version>
17         </dependency>
18         <dependency>
19             <groupId>org.opendaylight.controller.model</groupId>
20             <artifactId>model-topology</artifactId>
21         </dependency>
22     </dependencies>
23
24     <build>
25         <plugins>
26             <plugin>
27                 <groupId>org.apache.felix</groupId>
28                 <artifactId>maven-bundle-plugin</artifactId>
29                 <extensions>true</extensions>
30                 <configuration>
31                     <instructions>
32                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
33                         <Import-Package>org.opendaylight.yangtools.yang.binding.annotations, *</Import-Package>
34                     </instructions>
35                 </configuration>
36             </plugin>
37         </plugins>
38     </build>
39     <name>hosttracker-model</name>
40 </project>