Bump versions by x.(y+1).z for next dev cycle
[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.8.0-SNAPSHOT</version>
8         <relativePath>../parent</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.openflowplugin.model</groupId>
29             <artifactId>model-flow-service</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.opendaylight.openflowplugin.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         <dependency>
40             <groupId>${project.groupId}.openflowjava</groupId>
41             <artifactId>openflowjava-util</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>org.opendaylight.openflowplugin</groupId>
45             <artifactId>openflowplugin-common</artifactId>
46         </dependency>
47     </dependencies>
48
49     <build>
50         <plugins>
51             <plugin>
52                 <groupId>org.apache.felix</groupId>
53                 <artifactId>maven-bundle-plugin</artifactId>
54                 <extensions>true</extensions>
55                 <configuration>
56                     <instructions>
57                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
58                     </instructions>
59                 </configuration>
60             </plugin>
61         </plugins>
62     </build>
63 </project>