Bump versions by x.(y+1).z for next dev cycle
[openflowplugin.git] / features-aggregator / odl-openflowplugin-flow-services-rest / 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" 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.odlparent</groupId>
6         <artifactId>single-feature-parent</artifactId>
7         <version>3.1.3</version>
8         <relativePath/>
9     </parent>
10
11     <groupId>org.opendaylight.openflowplugin</groupId>
12     <artifactId>odl-openflowplugin-flow-services-rest</artifactId>
13     <packaging>feature</packaging>
14     <version>0.8.0-SNAPSHOT</version>
15
16     <name>OpenDaylight :: Openflow Plugin :: Flow Services :: REST</name>
17
18     <properties>
19         <restconf.version>1.9.0-SNAPSHOT</restconf.version>
20     </properties>
21
22     <dependencyManagement>
23         <dependencies>
24             <!-- restconf -->
25             <dependency>
26                 <groupId>org.opendaylight.netconf</groupId>
27                 <artifactId>restconf-artifacts</artifactId>
28                 <version>${restconf.version}</version>
29                 <scope>import</scope>
30                 <type>pom</type>
31             </dependency>
32         </dependencies>
33     </dependencyManagement>
34
35     <dependencies>
36         <!-- feature dependencies -->
37         <dependency>
38             <groupId>org.opendaylight.openflowplugin</groupId>
39             <artifactId>odl-openflowplugin-flow-services</artifactId>
40             <version>${project.version}</version>
41             <classifier>features</classifier>
42             <type>xml</type>
43         </dependency>
44         <dependency>
45             <groupId>org.opendaylight.netconf</groupId>
46             <artifactId>odl-restconf</artifactId>
47             <version>${restconf.version}</version>
48             <classifier>features</classifier>
49             <type>xml</type>
50         </dependency>
51     </dependencies>
52
53 </project>