BUG-9218: use packaged inventory model
[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>2.0.5</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.6.0-SNAPSHOT</version>
16
17     <name>OpenDaylight :: OpenflowPlugin :: NSF :: Model</name>
18
19     <properties>
20         <mdsal.version>1.7.0-SNAPSHOT</mdsal.version>
21         <mdsal.model.version>0.12.0-SNAPSHOT</mdsal.model.version>
22     </properties>
23
24     <dependencyManagement>
25         <dependencies>
26             <!-- Controller infrastructure -->
27             <dependency>
28                 <groupId>org.opendaylight.controller</groupId>
29                 <artifactId>mdsal-artifacts</artifactId>
30                 <version>${mdsal.version}</version>
31                 <scope>import</scope>
32                 <type>pom</type>
33             </dependency>
34         </dependencies>
35     </dependencyManagement>
36
37     <dependencies>
38         <!-- feature dependencies -->
39         <dependency>
40             <groupId>org.opendaylight.mdsal.model</groupId>
41             <artifactId>odl-mdsal-models</artifactId>
42             <version>${mdsal.model.version}</version>
43             <classifier>features</classifier>
44             <type>xml</type>
45         </dependency>
46
47         <dependency>
48             <groupId>org.opendaylight.controller</groupId>
49             <artifactId>odl-mdsal-model-inventory</artifactId>
50             <version>${mdsal.version}</version>
51             <classifier>features</classifier>
52             <type>xml</type>
53         </dependency>
54
55         <dependency>
56             <groupId>org.opendaylight.controller.model</groupId>
57             <artifactId>model-topology</artifactId>
58             <version>${mdsal.version}</version>
59         </dependency>
60
61         <dependency>
62             <groupId>${project.groupId}.openflowjava</groupId>
63             <artifactId>odl-openflowjava-protocol</artifactId>
64             <version>${project.version}</version>
65             <classifier>features</classifier>
66             <type>xml</type>
67         </dependency>
68
69         <dependency>
70             <groupId>org.opendaylight.openflowplugin.model</groupId>
71             <artifactId>model-flow-base</artifactId>
72             <version>${project.version}</version>
73         </dependency>
74
75         <dependency>
76             <groupId>org.opendaylight.openflowplugin.model</groupId>
77             <artifactId>model-flow-statistics</artifactId>
78             <version>${project.version}</version>
79         </dependency>
80
81         <dependency>
82             <groupId>org.opendaylight.openflowplugin.model</groupId>
83             <artifactId>model-flow-service</artifactId>
84             <version>${project.version}</version>
85         </dependency>
86
87     </dependencies>
88
89 </project>