Bump versions by x.(y+1).z for next dev cycle
[openflowplugin.git] / features-aggregator / odl-openflowplugin-nsf-model / 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-nsf-model</artifactId>
14     <packaging>feature</packaging>
15     <version>0.5.0-SNAPSHOT</version>
16
17     <name>OpenDaylight :: OpenflowPlugin :: NSF :: Model</name>
18
19     <properties>
20         <mdsal.version>1.6.0-SNAPSHOT</mdsal.version>
21         <openflowjava.version>0.10.0-SNAPSHOT</openflowjava.version>
22         <mdsal.model.version>0.11.0-SNAPSHOT</mdsal.model.version>
23     </properties>
24
25     <dependencyManagement>
26         <dependencies>
27             <!-- Controller infrastructure -->
28             <dependency>
29                 <groupId>org.opendaylight.controller</groupId>
30                 <artifactId>mdsal-artifacts</artifactId>
31                 <version>${mdsal.version}</version>
32                 <scope>import</scope>
33                 <type>pom</type>
34             </dependency>
35         </dependencies>
36     </dependencyManagement>
37
38     <dependencies>
39         <!-- feature dependencies -->
40         <dependency>
41             <groupId>org.opendaylight.mdsal.model</groupId>
42             <artifactId>odl-mdsal-models</artifactId>
43             <version>${mdsal.model.version}</version>
44             <classifier>features</classifier>
45             <type>xml</type>
46         </dependency>
47
48         <dependency>
49             <groupId>org.opendaylight.controller.model</groupId>
50             <artifactId>model-inventory</artifactId>
51             <version>${mdsal.version}</version>
52         </dependency>
53
54         <dependency>
55             <groupId>org.opendaylight.controller.model</groupId>
56             <artifactId>model-topology</artifactId>
57             <version>${mdsal.version}</version>
58         </dependency>
59
60         <dependency>
61             <groupId>org.opendaylight.openflowjava</groupId>
62             <artifactId>odl-openflowjava-protocol</artifactId>
63             <version>${openflowjava.version}</version>
64             <classifier>features</classifier>
65             <type>xml</type>
66         </dependency>
67
68         <dependency>
69             <groupId>org.opendaylight.openflowplugin.model</groupId>
70             <artifactId>model-flow-base</artifactId>
71             <version>${project.version}</version>
72         </dependency>
73
74         <dependency>
75             <groupId>org.opendaylight.openflowplugin.model</groupId>
76             <artifactId>model-flow-statistics</artifactId>
77             <version>${project.version}</version>
78         </dependency>
79
80         <dependency>
81             <groupId>org.opendaylight.openflowplugin.model</groupId>
82             <artifactId>model-flow-service</artifactId>
83             <version>${project.version}</version>
84         </dependency>
85
86     </dependencies>
87
88 </project>