Bump versions by x.(y+1).z for next dev cycle
[openflowplugin.git] / extension / openflowjava-extension-nicira-api / pom.xml
1 <?xml version="1.0"?>
2 <project
3     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4     xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5     <modelVersion>4.0.0</modelVersion>
6     <parent>
7         <groupId>org.opendaylight.openflowplugin</groupId>
8         <artifactId>openflowplugin-extension-parent</artifactId>
9         <version>0.8.0-SNAPSHOT</version>
10         <relativePath>../</relativePath>
11     </parent>
12     <artifactId>openflowjava-extension-nicira-api</artifactId>
13     <packaging>bundle</packaging>
14
15     <build>
16         <plugins>
17             <plugin>
18                 <groupId>org.apache.felix</groupId>
19                 <artifactId>maven-bundle-plugin</artifactId>
20                 <configuration>
21                   <instructions>
22                     <Export-Package>
23                       org.opendaylight.openflowjava.nx.api, org.opendaylight.openflowjava.nx.api.impl
24                     </Export-Package>
25                     <Embed-Transitive>true</Embed-Transitive>
26                    </instructions>
27                 </configuration>
28             </plugin>
29         </plugins>
30     </build>
31
32     <dependencies>
33         <dependency>
34             <groupId>${project.groupId}.openflowjava</groupId>
35             <artifactId>openflow-protocol-api</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>${project.groupId}.openflowjava</groupId>
39             <artifactId>openflow-protocol-spi</artifactId>
40         </dependency>
41
42         <!-- Test dependencies -->
43         <dependency>
44             <groupId>org.mockito</groupId>
45             <artifactId>mockito-core</artifactId>
46             <scope>test</scope>
47         </dependency>
48         <dependency>
49             <groupId>junit</groupId>
50             <artifactId>junit</artifactId>
51             <scope>test</scope>
52         </dependency>
53     </dependencies>
54 </project>