Merge "RestconfImpl.invokeRpc method test"
[controller.git] / opendaylight / sal / 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"
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>sal.implementation</artifactId>
19   <version>0.4.1-SNAPSHOT</version>
20   <packaging>bundle</packaging>
21
22   <build>
23     <plugins>
24       <plugin>
25         <groupId>org.apache.felix</groupId>
26         <artifactId>maven-bundle-plugin</artifactId>
27         <version>${bundle.plugin.version}</version>
28         <extensions>true</extensions>
29         <configuration>
30           <instructions>
31             <Import-Package>
32               org.slf4j,
33               org.apache.commons.lang3.builder,
34               org.opendaylight.controller.sal.core,
35               org.opendaylight.controller.sal.packet,
36               org.opendaylight.controller.sal.inventory,
37               org.opendaylight.controller.sal.flowprogrammer,
38               org.opendaylight.controller.sal.reader,
39               org.opendaylight.controller.sal.topology,
40               org.opendaylight.controller.sal.action,
41               org.opendaylight.controller.sal.match,
42               org.opendaylight.controller.sal.utils,
43               org.apache.felix.dm,
44               org.eclipse.osgi.framework.console,
45               org.osgi.framework
46             </Import-Package>
47             <Export-Package>
48             </Export-Package>
49             <Bundle-Activator>
50               org.opendaylight.controller.sal.implementation.internal.Activator
51             </Bundle-Activator>
52           </instructions>
53           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
54         </configuration>
55       </plugin>
56     </plugins>
57   </build>
58   <dependencies>
59     <dependency>
60       <groupId>org.opendaylight.controller</groupId>
61       <artifactId>sal</artifactId>
62       <version>0.7.0-SNAPSHOT</version>
63     </dependency>
64     <dependency>
65       <groupId>equinoxSDK381</groupId>
66       <artifactId>org.eclipse.osgi</artifactId>
67     </dependency>
68     <dependency>
69       <groupId>junit</groupId>
70       <artifactId>junit</artifactId>
71       <scope>test</scope>
72     </dependency>
73   </dependencies>
74 </project>