Merge "Added a generic API to return a list of configured switches that are not conne...
[controller.git] / opendaylight / clustering / services / 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
18   <artifactId>clustering.services</artifactId>
19   <version>0.5.0-SNAPSHOT</version>
20   <packaging>bundle</packaging>
21
22   <dependencies>
23     <dependency>
24       <groupId>org.jboss.spec.javax.transaction</groupId>
25       <artifactId>jboss-transaction-api_1.1_spec</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         <version>${bundle.plugin.version}</version>
35         <extensions>true</extensions>
36         <configuration>
37           <instructions>
38             <Export-Package>
39               org.opendaylight.controller.clustering.services
40             </Export-Package>
41             <Import-Package>
42               javax.transaction
43             </Import-Package>
44           </instructions>
45           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
46         </configuration>
47       </plugin>
48     </plugins>
49   </build>
50 </project>