Incrementing versions by 0.1.0 for post-helium master branch
[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.controller.model</groupId>
31             <artifactId>model-flow-service</artifactId>
32         </dependency>    
33             <dependency>
34               <groupId>org.opendaylight.controller.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               
50     </dependencies>
51
52     <build>
53         <plugins>
54             <plugin>
55                 <groupId>org.apache.felix</groupId>
56                 <artifactId>maven-bundle-plugin</artifactId>
57                 <version>${maven.bundle.version}</version>
58                 <extensions>true</extensions>
59                 <configuration>
60                     <instructions>
61                         <Bundle-Activator>org.opendaylight.openflowplugin.droptest.DropTestActivator</Bundle-Activator>
62                         <Embed-Dependency>commons-lang</Embed-Dependency>
63                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
64                     </instructions>
65                 </configuration>
66             </plugin>
67         </plugins>
68     </build>
69 </project>