Bump versions by x.(y+1).z for next dev cycle
[openflowplugin.git] / features-aggregator / odl-openflowplugin-flow-services-ui / 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     <modelVersion>4.0.0</modelVersion>
5     <parent>
6         <groupId>org.opendaylight.odlparent</groupId>
7         <artifactId>single-feature-parent</artifactId>
8         <version>1.9.0-SNAPSHOT</version>
9         <relativePath/>
10     </parent>
11
12     <groupId>org.opendaylight.openflowplugin</groupId>
13     <artifactId>odl-openflowplugin-flow-services-ui</artifactId>
14     <packaging>feature</packaging>
15     <version>0.5.0-SNAPSHOT</version>
16
17     <name>OpenDaylight :: Openflow Plugin :: Flow Services :: UI</name>
18
19     <properties>
20         <dlux.version>0.6.0-SNAPSHOT</dlux.version>
21         <restconf.version>1.6.0-SNAPSHOT</restconf.version>
22     </properties>
23
24     <dependencyManagement>
25         <dependencies>
26             <!-- DLUX -->
27             <dependency>
28                 <groupId>org.opendaylight.dlux</groupId>
29                 <artifactId>odl-dlux-core</artifactId>
30                 <version>${dlux.version}</version>
31                 <scope>import</scope>
32                 <type>pom</type>
33             </dependency>
34
35             <!-- restconf -->
36             <dependency>
37                 <groupId>org.opendaylight.netconf</groupId>
38                 <artifactId>restconf-artifacts</artifactId>
39                 <version>${restconf.version}</version>
40                 <scope>import</scope>
41                 <type>pom</type>
42             </dependency>
43
44         </dependencies>
45     </dependencyManagement>
46
47     <dependencies>
48         <!-- feature dependencies -->
49         <dependency>
50             <groupId>org.opendaylight.openflowplugin</groupId>
51             <artifactId>odl-openflowplugin-flow-services-rest</artifactId>
52             <version>${project.version}</version>
53             <classifier>features</classifier>
54             <type>xml</type>
55         </dependency>
56         <dependency>
57             <groupId>org.opendaylight.dlux</groupId>
58             <artifactId>odl-dlux-core</artifactId>
59             <version>${dlux.version}</version>
60             <classifier>features</classifier>
61             <type>xml</type>
62         </dependency>
63         <dependency>
64             <groupId>org.opendaylight.netconf</groupId>
65             <artifactId>odl-mdsal-apidocs</artifactId>
66             <version>${restconf.version}</version>
67             <classifier>features</classifier>
68             <type>xml</type>
69         </dependency>
70     </dependencies>
71
72 </project>