Merge "Remove dependency of impl on onf-extensions"
[openflowplugin.git] / drop-test-karaf / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2     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.openflowplugin</groupId>
6         <artifactId>openflowplugin-parent</artifactId>
7         <version>0.6.0-SNAPSHOT</version>
8         <relativePath>../parent</relativePath>
9     </parent>
10     <artifactId>drop-test-karaf</artifactId>
11     <packaging>bundle</packaging>
12     <scm>
13         <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
14         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
15     </scm>
16     <dependencies>
17         <dependency>
18             <groupId>org.opendaylight.openflowplugin</groupId>
19             <artifactId>test-common</artifactId>
20         </dependency>
21         <dependency>
22             <groupId>com.google.guava</groupId>
23             <artifactId>guava</artifactId>
24         </dependency>
25         <dependency>
26             <groupId>org.opendaylight.controller</groupId>
27             <artifactId>sal-binding-api</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>org.opendaylight.controller</groupId>
31             <artifactId>sal-binding-broker-impl</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.opendaylight.openflowplugin.model</groupId>
35             <artifactId>model-flow-service</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>org.opendaylight.openflowplugin.model</groupId>
39             <artifactId>model-flow-base</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.opendaylight.controller.model</groupId>
43             <artifactId>model-inventory</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>org.apache.karaf.shell</groupId>
47             <artifactId>org.apache.karaf.shell.console</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>commons-lang</groupId>
51             <artifactId>commons-lang</artifactId>
52         </dependency>
53
54     </dependencies>
55
56     <build>
57         <plugins>
58             <plugin>
59                 <groupId>org.apache.felix</groupId>
60                 <artifactId>maven-bundle-plugin</artifactId>
61                 <extensions>true</extensions>
62                 <configuration>
63                     <instructions>
64                         <!-- This bundle works with Karaf 3 and 4.0 -->
65                         <Import-Package>
66                             org.apache.karaf.shell.commands;version="[3.0.0,4.1)",
67                             org.apache.karaf.shell.console.*;version="[3.0.0,4.1)",
68                             *
69                         </Import-Package>
70                     </instructions>
71                 </configuration>
72             </plugin>
73         </plugins>
74     </build>
75 </project>