Bump odlparent 2.0.4 to 2.0.5
[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     </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         <dependency>
62             <groupId>${project.groupId}</groupId>
63             <artifactId>openflowplugin-blueprint-config</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>${project.groupId}.openflowjava</groupId>
67             <artifactId>openflowjava-blueprint-config</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.openflowplugin</groupId>
71             <artifactId>openflowplugin-common</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>org.opendaylight.openflowplugin</groupId>
75             <artifactId>openflowplugin-api</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>org.opendaylight.openflowplugin</groupId>
79             <artifactId>openflowplugin</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>org.opendaylight.openflowplugin</groupId>
83             <artifactId>openflowplugin-impl</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>org.opendaylight.openflowplugin</groupId>
87             <artifactId>openflowplugin-extension-api</artifactId>
88         </dependency>
89         <dependency>
90             <groupId>org.opendaylight.controller</groupId>
91             <artifactId>liblldp</artifactId>
92             <version>${lldp.version}</version>
93         </dependency>
94
95         <!-- config files -->
96         <dependency>
97             <groupId>org.opendaylight.openflowplugin</groupId>
98             <artifactId>openflowplugin-blueprint-config</artifactId>
99             <type>cfg</type>
100             <classifier>config</classifier>
101         </dependency>
102     </dependencies>
103
104 </project>