Add explicit org.osgi.core dependency
[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.7.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.osgi</groupId>
19             <artifactId>org.osgi.core</artifactId>
20         </dependency>
21         <dependency>
22             <groupId>org.opendaylight.openflowplugin</groupId>
23             <artifactId>test-common</artifactId>
24         </dependency>
25         <dependency>
26             <groupId>com.google.guava</groupId>
27             <artifactId>guava</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>org.opendaylight.controller</groupId>
31             <artifactId>sal-binding-api</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.opendaylight.controller</groupId>
35             <artifactId>sal-binding-broker-impl</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>org.opendaylight.openflowplugin.model</groupId>
39             <artifactId>model-flow-service</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.opendaylight.openflowplugin.model</groupId>
43             <artifactId>model-flow-base</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>org.opendaylight.controller.model</groupId>
47             <artifactId>model-inventory</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.apache.karaf.shell</groupId>
51             <artifactId>org.apache.karaf.shell.console</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>commons-lang</groupId>
55             <artifactId>commons-lang</artifactId>
56         </dependency>
57
58     </dependencies>
59
60     <build>
61         <plugins>
62             <plugin>
63                 <groupId>org.apache.felix</groupId>
64                 <artifactId>maven-bundle-plugin</artifactId>
65                 <extensions>true</extensions>
66             </plugin>
67         </plugins>
68     </build>
69 </project>