Bump odlparent 2.0.2 to 2.0.4
[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.4</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.5.0-SNAPSHOT</version>
16
17     <name>OpenDaylight :: Openflow Plugin :: Li southbound API implementation</name>
18
19     <properties>
20         <mdsal.version>1.6.0-SNAPSHOT</mdsal.version>
21         <lldp.version>0.13.0-SNAPSHOT</lldp.version>
22     </properties>
23
24     <dependencyManagement>
25         <dependencies>
26             <!-- This project -->
27             <dependency>
28                 <groupId>org.opendaylight.openflowplugin</groupId>
29                 <artifactId>openflowplugin-artifacts</artifactId>
30                 <version>${project.version}</version>
31                 <scope>import</scope>
32                 <type>pom</type>
33             </dependency>
34             <!-- Controller infrastructure -->
35             <dependency>
36                 <groupId>org.opendaylight.controller</groupId>
37                 <artifactId>mdsal-artifacts</artifactId>
38                 <version>${mdsal.version}</version>
39                 <scope>import</scope>
40                 <type>pom</type>
41             </dependency>
42         </dependencies>
43     </dependencyManagement>
44
45     <dependencies>
46         <!-- feature dependencies -->
47         <dependency>
48             <groupId>org.opendaylight.controller</groupId>
49             <artifactId>odl-mdsal-broker</artifactId>
50             <version>${mdsal.version}</version>
51             <classifier>features</classifier>
52             <type>xml</type>
53         </dependency>
54
55         <dependency>
56             <groupId>org.opendaylight.openflowplugin</groupId>
57             <artifactId>odl-openflowplugin-nsf-model</artifactId>
58             <classifier>features</classifier>
59             <type>xml</type>
60         </dependency>
61
62         <dependency>
63             <groupId>org.opendaylight.openflowplugin</groupId>
64             <artifactId>openflowplugin-common</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.openflowplugin</groupId>
68             <artifactId>openflowplugin-api</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.opendaylight.openflowplugin</groupId>
72             <artifactId>openflowplugin</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>org.opendaylight.openflowplugin</groupId>
76             <artifactId>openflowplugin-impl</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>org.opendaylight.openflowplugin</groupId>
80             <artifactId>openflowplugin-extension-api</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>org.opendaylight.controller</groupId>
84             <artifactId>liblldp</artifactId>
85             <version>${lldp.version}</version>
86         </dependency>
87
88         <!-- config files -->
89         <dependency>
90             <groupId>org.opendaylight.openflowplugin</groupId>
91             <artifactId>openflowplugin-blueprint-config</artifactId>
92             <type>cfg</type>
93             <classifier>config</classifier>
94         </dependency>
95     </dependencies>
96
97 </project>