Merge "Bug 8902 : Spec for Reconciliation Framework"
[openflowplugin.git] / features-aggregator / odl-openflowplugin-southbound / 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-southbound</artifactId>
14     <packaging>feature</packaging>
15     <version>0.6.0-SNAPSHOT</version>
16
17     <name>OpenDaylight :: Openflow Plugin :: Li southbound API implementation</name>
18
19     <properties>
20         <mdsal.version>1.7.0-SNAPSHOT</mdsal.version>
21         <lldp.version>0.14.0-SNAPSHOT</lldp.version>
22         <infrautils.version>1.3.0-SNAPSHOT</infrautils.version>
23     </properties>
24
25     <dependencyManagement>
26         <dependencies>
27             <!-- This project -->
28             <dependency>
29                 <groupId>org.opendaylight.openflowplugin</groupId>
30                 <artifactId>openflowplugin-artifacts</artifactId>
31                 <version>${project.version}</version>
32                 <scope>import</scope>
33                 <type>pom</type>
34             </dependency>
35             <!-- Controller infrastructure -->
36             <dependency>
37                 <groupId>org.opendaylight.controller</groupId>
38                 <artifactId>mdsal-artifacts</artifactId>
39                 <version>${mdsal.version}</version>
40                 <scope>import</scope>
41                 <type>pom</type>
42             </dependency>
43         </dependencies>
44     </dependencyManagement>
45
46     <dependencies>
47         <!-- feature dependencies -->
48         <dependency>
49             <groupId>org.opendaylight.controller</groupId>
50             <artifactId>odl-mdsal-broker</artifactId>
51             <version>${mdsal.version}</version>
52             <classifier>features</classifier>
53             <type>xml</type>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.infrautils</groupId>
57             <artifactId>odl-infrautils-diagstatus</artifactId>
58             <version>${infrautils.version}</version>
59             <type>xml</type>
60             <classifier>features</classifier>
61         </dependency>
62         <dependency>
63             <groupId>org.opendaylight.openflowplugin</groupId>
64             <artifactId>odl-openflowplugin-nsf-model</artifactId>
65             <classifier>features</classifier>
66             <type>xml</type>
67         </dependency>
68         <dependency>
69             <groupId>${project.groupId}</groupId>
70             <artifactId>openflowplugin-blueprint-config</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>${project.groupId}.openflowjava</groupId>
74             <artifactId>openflowjava-blueprint-config</artifactId>
75         </dependency>
76         <dependency>
77             <groupId>org.opendaylight.openflowplugin</groupId>
78             <artifactId>openflowplugin-common</artifactId>
79         </dependency>
80         <dependency>
81             <groupId>org.opendaylight.openflowplugin</groupId>
82             <artifactId>openflowplugin-api</artifactId>
83         </dependency>
84         <dependency>
85             <groupId>org.opendaylight.openflowplugin</groupId>
86             <artifactId>openflowplugin</artifactId>
87         </dependency>
88         <dependency>
89             <groupId>org.opendaylight.openflowplugin</groupId>
90             <artifactId>openflowplugin-impl</artifactId>
91         </dependency>
92         <dependency>
93             <groupId>org.opendaylight.openflowplugin</groupId>
94             <artifactId>openflowplugin-extension-api</artifactId>
95         </dependency>
96         <dependency>
97             <groupId>org.opendaylight.controller</groupId>
98             <artifactId>liblldp</artifactId>
99             <version>${lldp.version}</version>
100         </dependency>
101         <dependency>
102             <groupId>javax.inject</groupId>
103             <artifactId>javax.inject</artifactId>
104         </dependency>
105
106         <!-- config files -->
107         <dependency>
108             <groupId>org.opendaylight.openflowplugin</groupId>
109             <artifactId>openflowplugin-blueprint-config</artifactId>
110             <type>cfg</type>
111             <classifier>config</classifier>
112         </dependency>
113     </dependencies>
114
115 </project>