Bump versions by x.(y+1).z
[openflowplugin.git] / openflowjava / openflow-protocol-spi / 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.openflowjava</groupId>
6         <artifactId>openflowjava-parent</artifactId>
7         <version>0.15.0-SNAPSHOT</version>
8         <relativePath>../</relativePath>
9     </parent>
10     <artifactId>openflow-protocol-spi</artifactId>
11     <packaging>bundle</packaging>
12
13     <!-- <name> formatting is used by autorelease to parse and notify projects on
14          build failure. Please do not modify this unless you have a good reason. -->
15     <name>ODL :: openflowjava :: ${project.artifactId}</name>
16     <scm>
17         <url>https://wiki.opendaylight.org/view/Openflow_Protocol_Library:Main</url>
18       <tag>HEAD</tag>
19   </scm>
20
21   <build>
22         <plugins>
23             <plugin>
24               <groupId>org.apache.felix</groupId>
25               <artifactId>maven-bundle-plugin</artifactId>
26               <extensions>true</extensions>
27               <configuration>
28                 <instructions>
29                   <Import-Package>org.opendaylight.openflowjava.protocol.api.keys,*</Import-Package>
30                 </instructions>
31               </configuration>
32             </plugin>
33         </plugins>
34     </build>
35
36     <dependencies>
37         <dependency>
38             <groupId>${project.groupId}</groupId>
39             <artifactId>openflow-protocol-api</artifactId>
40         </dependency>
41     </dependencies>
42 </project>