Incrementing versions by 0.1.0 for post-helium master branch
[openflowplugin.git] / test-common / 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>test-common</artifactId>
11     <packaging>bundle</packaging>
12
13     <scm>
14         <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
15         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
16     </scm>
17     
18     <dependencies>
19         <dependency>
20             <groupId>com.google.guava</groupId>
21             <artifactId>guava</artifactId>
22         </dependency>
23         <dependency>
24             <groupId>org.opendaylight.controller</groupId>
25             <artifactId>sal-binding-api</artifactId>
26         </dependency>
27         <dependency>
28             <groupId>org.opendaylight.controller.model</groupId>
29             <artifactId>model-flow-service</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.opendaylight.controller.model</groupId>
33             <artifactId>model-flow-base</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>org.opendaylight.controller.model</groupId>
37             <artifactId>model-inventory</artifactId>
38         </dependency>
39     </dependencies>
40
41     <build>
42         <plugins>
43             <plugin>
44                 <groupId>org.apache.felix</groupId>
45                 <artifactId>maven-bundle-plugin</artifactId>
46                 <extensions>true</extensions>
47                 <configuration>
48                     <instructions>
49                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
50                     </instructions>
51                 </configuration>
52             </plugin>
53         </plugins>
54     </build>
55 </project>