Bump versions by x.(y+1).z
[openflowplugin.git] / test-common / pom.xml
1 <?xml version="1.0"?>
2 <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">
3     <modelVersion>4.0.0</modelVersion>
4     <parent>
5         <groupId>org.opendaylight.openflowplugin</groupId>
6         <artifactId>openflowplugin-parent</artifactId>
7         <version>0.15.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.mdsal</groupId>
25             <artifactId>mdsal-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.openflowplugin.model</groupId>
37             <artifactId>model-inventory</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.openflowplugin</groupId>
41             <artifactId>openflowplugin-common</artifactId>
42         </dependency>
43     </dependencies>
44
45     <build>
46         <plugins>
47             <plugin>
48                 <groupId>org.apache.felix</groupId>
49                 <artifactId>maven-bundle-plugin</artifactId>
50                 <extensions>true</extensions>
51                 <configuration>
52                     <instructions>
53                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
54                     </instructions>
55                 </configuration>
56             </plugin>
57         </plugins>
58     </build>
59 </project>