Merge "BUG-2329 Add test for anyxmls inside rpc resonse for netcfon-connector"
[controller.git] / opendaylight / connectionmanager / implementation / 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.5.0-SNAPSHOT</version>
8     <relativePath>../../commons/opendaylight</relativePath>
9   </parent>
10
11   <artifactId>connectionmanager.implementation</artifactId>
12   <version>0.2.0-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14   <dependencies>
15     <dependency>
16       <groupId>equinoxSDK381</groupId>
17       <artifactId>org.eclipse.osgi</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>connectionmanager</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.controller</groupId>
29       <artifactId>sal</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.controller</groupId>
33       <artifactId>sal.connection</artifactId>
34     </dependency>
35   </dependencies>
36
37   <build>
38     <plugins>
39       <plugin>
40         <groupId>org.apache.felix</groupId>
41         <artifactId>maven-bundle-plugin</artifactId>
42         <extensions>true</extensions>
43         <configuration>
44           <instructions>
45             <Import-Package>org.opendaylight.controller.connectionmanager,
46               org.opendaylight.controller.clustering.services,
47               org.opendaylight.controller.sal.utils,
48               org.opendaylight.controller.sal.core,
49               org.opendaylight.controller.sal.connection,
50               org.opendaylight.controller.sal.inventory,
51               org.eclipse.osgi.framework.console,
52               org.osgi.framework,
53               org.slf4j,
54               org.apache.felix.dm</Import-Package>
55             <Export-Package></Export-Package>
56             <Bundle-Activator>org.opendaylight.controller.connectionmanager.internal.Activator</Bundle-Activator>
57           </instructions>
58           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
59         </configuration>
60       </plugin>
61     </plugins>
62   </build>
63   <scm>
64     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
65     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
66     <tag>HEAD</tag>
67     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
68   </scm>
69 </project>