Bump versions by x.(y+1).z
[openflowplugin.git] / extension / openflowjava-extension-nicira-api / 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>openflowjava-extension-nicira-api</artifactId>
11     <packaging>bundle</packaging>
12
13     <build>
14         <plugins>
15             <plugin>
16                 <groupId>org.apache.felix</groupId>
17                 <artifactId>maven-bundle-plugin</artifactId>
18                 <configuration>
19                   <instructions>
20                     <Export-Package>
21                       org.opendaylight.openflowjava.nx.api, org.opendaylight.openflowjava.nx.api.impl
22                     </Export-Package>
23                     <Embed-Transitive>true</Embed-Transitive>
24                    </instructions>
25                 </configuration>
26             </plugin>
27         </plugins>
28     </build>
29
30     <dependencies>
31         <dependency>
32             <groupId>${project.groupId}.openflowjava</groupId>
33             <artifactId>openflow-protocol-api</artifactId>
34         </dependency>
35     </dependencies>
36 </project>