Fixed publishDataChangeEvent in 2phase commit
[controller.git] / opendaylight / hosttracker / api / 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"
3  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4  <modelVersion>4.0.0</modelVersion>
5  <parent>
6   <groupId>org.opendaylight.controller</groupId>
7   <artifactId>commons.opendaylight</artifactId>
8   <version>1.4.1-SNAPSHOT</version>
9   <relativePath>../../commons/opendaylight</relativePath>
10  </parent>
11  <scm>
12   <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
13   <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
14   <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
15   <tag>HEAD</tag>
16  </scm>
17  <artifactId>hosttracker</artifactId>
18  <version>0.5.1-SNAPSHOT</version>
19  <packaging>bundle</packaging>
20
21  <build>
22   <plugins>
23    <plugin>
24     <groupId>org.apache.felix</groupId>
25     <artifactId>maven-bundle-plugin</artifactId>
26     <version>${bundle.plugin.version}</version>
27     <extensions>true</extensions>
28     <configuration>
29      <instructions>
30       <Export-Package>
31        org.opendaylight.controller.hosttracker,
32        org.opendaylight.controller.hosttracker.hostAware
33       </Export-Package>
34       <Import-Package>
35        org.opendaylight.controller.sal.core,
36        org.opendaylight.controller.sal.utils,
37        org.opendaylight.controller.sal.packet.address,
38        javax.xml.bind.annotation,
39        javax.xml.bind,
40        org.apache.felix.dm,
41        org.osgi.service.component,
42        org.slf4j,
43        org.eclipse.osgi.framework.console,
44        org.osgi.framework
45       </Import-Package>
46      </instructions>
47      <manifestLocation>${project.basedir}/META-INF</manifestLocation>
48     </configuration>
49    </plugin>
50   </plugins>
51  </build>
52  <dependencies>
53   <dependency>
54    <groupId>org.opendaylight.controller</groupId>
55    <artifactId>sal</artifactId>
56   </dependency>
57   <dependency>
58    <groupId>junit</groupId>
59    <artifactId>junit</artifactId>
60   </dependency>
61  </dependencies>
62 </project>
63