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