4569bf190436b5b695c0b97b6c262392acfb9167
[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.0.3-SNAPSHOT</version>
8         <relativePath>../</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             <version>${project.version}</version>
21         </dependency>
22         <dependency>
23             <groupId>com.google.guava</groupId>
24             <artifactId>guava</artifactId>
25         </dependency>
26         <dependency>
27             <groupId>org.opendaylight.controller</groupId>
28             <artifactId>sal-binding-api</artifactId>
29         </dependency>
30         <dependency>
31             <groupId>org.opendaylight.controller.model</groupId>
32             <artifactId>model-flow-service</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>org.opendaylight.controller.model</groupId>
36             <artifactId>model-flow-base</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>org.opendaylight.controller.model</groupId>
40             <artifactId>model-inventory</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.apache.karaf.shell</groupId>
44             <artifactId>org.apache.karaf.shell.console</artifactId>
45             <version>${karaf.version}</version>
46         </dependency>
47         <dependency>
48             <groupId>org.osgi</groupId>
49             <artifactId>org.osgi.core</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>commons-lang</groupId>
53             <artifactId>commons-lang</artifactId>
54         </dependency>
55
56     </dependencies>
57
58     <build>
59         <plugins>
60             <plugin>
61                 <groupId>org.apache.felix</groupId>
62                 <artifactId>maven-bundle-plugin</artifactId>
63                 <version>${maven.bundle.version}</version>
64                 <extensions>true</extensions>
65                 <configuration>
66                     <instructions>
67                         <Bundle-Activator>org.opendaylight.openflowplugin.droptestkaraf.DropTestActivator</Bundle-Activator>
68                         <Embed-Dependency>commons-lang</Embed-Dependency>
69                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
70                         <Import-Package>
71                           org.apache.felix.service.command,
72                           org.apache.felix.gogo.commands,
73                           org.apache.karaf.shell.console,
74                           *
75                         </Import-Package>
76                     </instructions>
77                 </configuration>
78             </plugin>
79         </plugins>
80     </build>
81 </project>