Merge "Bug 849: Fixed NPE in Translated Data Change Events."
[controller.git] / opendaylight / clustering / stub / 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.controller</groupId>
6     <artifactId>commons.opendaylight</artifactId>
7     <version>1.4.2-SNAPSHOT</version>
8     <relativePath>../../commons/opendaylight</relativePath>
9   </parent>
10
11   <artifactId>clustering.stub</artifactId>
12   <version>0.4.2-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14   <dependencies>
15     <dependency>
16       <groupId>junit</groupId>
17       <artifactId>junit</artifactId>
18     </dependency>
19     <dependency>
20       <groupId>org.opendaylight.controller</groupId>
21       <artifactId>clustering.services</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>org.opendaylight.controller</groupId>
25       <artifactId>sal</artifactId>
26     </dependency>
27   </dependencies>
28
29   <build>
30     <plugins>
31       <plugin>
32         <groupId>org.apache.felix</groupId>
33         <artifactId>maven-bundle-plugin</artifactId>
34         <extensions>true</extensions>
35         <configuration>
36           <instructions>
37             <Import-Package>javax.transaction,
38               org.apache.felix.dm,
39               org.slf4j,
40               org.opendaylight.controller.clustering.services,
41               org.opendaylight.controller.sal.core</Import-Package>
42             <Bundle-Activator>org.opendaylight.controller.clustering.stub.internal.Activator</Bundle-Activator>
43           </instructions>
44           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
45         </configuration>
46       </plugin>
47     </plugins>
48   </build>
49   <scm>
50     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
51     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
52     <tag>HEAD</tag>
53     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
54   </scm>
55 </project>