Bump versions by x.(y+1).z for next dev cycle
[openflowplugin.git] / extension / openflowplugin-extension-api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4
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
13     <artifactId>openflowplugin-extension-api</artifactId>
14     <packaging>bundle</packaging>
15     <build>
16         <plugins>
17             <plugin>
18                 <groupId>org.apache.felix</groupId>
19                 <artifactId>maven-bundle-plugin</artifactId>
20             </plugin>
21         </plugins>
22     </build>
23
24     <dependencies>
25         <dependency>
26             <groupId>org.opendaylight.yangtools</groupId>
27             <artifactId>yang-model-api</artifactId>
28         </dependency>
29
30         <!-- OpenFlowJava-API models -->
31         <dependency>
32             <groupId>${project.groupId}.openflowjava</groupId>
33             <artifactId>openflow-protocol-api</artifactId>
34         </dependency>
35
36         <!-- MD-SAL models -->
37         <dependency>
38             <groupId>org.opendaylight.openflowplugin.model</groupId>
39             <artifactId>model-flow-base</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.opendaylight.openflowplugin.model</groupId>
43             <artifactId>model-flow-service</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>org.opendaylight.openflowplugin.model</groupId>
47             <artifactId>model-flow-statistics</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.controller.model</groupId>
51             <artifactId>model-inventory</artifactId>
52         </dependency>
53
54         <!-- junit -->
55         <dependency>
56             <groupId>junit</groupId>
57             <artifactId>junit</artifactId>
58             <scope>test</scope>
59         </dependency>
60
61     </dependencies>
62
63 </project>