Merge "BUG-837: it unstable (added missing bundles)"
[openflowplugin.git] / drop-test / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2     <modelVersion>4.0.0</modelVersion>
3     <parent>
4         <groupId>org.opendaylight.openflowplugin</groupId>
5         <artifactId>openflowplugin-parent</artifactId>
6         <version>0.1.0-SNAPSHOT</version>
7         <relativePath>../</relativePath>
8     </parent>
9     <artifactId>drop-test</artifactId>
10     <packaging>bundle</packaging>
11     <scm>
12         <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
13         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
14     </scm>
15     <dependencies>
16         <dependency>
17             <groupId>org.opendaylight.openflowplugin</groupId>
18             <artifactId>test-common</artifactId>
19             <version>${project.version}</version>
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>equinoxSDK381</groupId>
43                 <artifactId>org.eclipse.osgi</artifactId>
44             </dependency>
45             <dependency>
46             <groupId>commons-lang</groupId>
47             <artifactId>commons-lang</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.openflowplugin</groupId>
51             <artifactId>openflowplugin-api</artifactId>
52         </dependency>
53     </dependencies>
54
55     <build>
56         <plugins>
57             <plugin>
58                 <groupId>org.apache.felix</groupId>
59                 <artifactId>maven-bundle-plugin</artifactId>
60                 <version>${maven.bundle.version}</version>
61                 <extensions>true</extensions>
62                 <configuration>
63                     <instructions>
64                         <Bundle-Activator>org.opendaylight.openflowplugin.droptest.DropTestActivator</Bundle-Activator>
65                         <Embed-Dependency>commons-lang</Embed-Dependency>
66                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
67                     </instructions>
68                 </configuration>
69             </plugin>
70         </plugins>
71     </build>
72 </project>