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