Merge "OPNFLWPLUG-1039: adding switch idle event registration at the end of channel...
[openflowplugin.git] / openflowjava / features-openflowjava-aggregator / odl-openflowjava-protocol / 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3
4     <modelVersion>4.0.0</modelVersion>
5     <parent>
6         <groupId>org.opendaylight.odlparent</groupId>
7         <artifactId>single-feature-parent</artifactId>
8         <version>4.0.5</version>
9         <relativePath/>
10     </parent>
11
12     <groupId>org.opendaylight.openflowplugin.openflowjava</groupId>
13     <artifactId>odl-openflowjava-protocol</artifactId>
14     <version>0.8.0-SNAPSHOT</version>
15     <packaging>feature</packaging>
16
17     <!-- <name> formatting is used by autorelease to parse and notify projects on
18          build failure. Please do not modify this unless you have a good reason. -->
19     <name>ODL :: openflowjava :: ${project.artifactId}</name>
20
21     <dependencyManagement>
22         <dependencies>
23             <!-- This project -->
24             <dependency>
25                 <groupId>org.opendaylight.openflowplugin</groupId>
26                 <artifactId>openflowplugin-artifacts</artifactId>
27                 <version>${project.version}</version>
28                 <scope>import</scope>
29                 <type>pom</type>
30             </dependency>
31
32             <!-- MD-SAL -->
33             <dependency>
34                 <groupId>org.opendaylight.mdsal</groupId>
35                 <artifactId>mdsal-artifacts</artifactId>
36                 <version>3.0.3</version>
37                 <scope>import</scope>
38                 <type>pom</type>
39             </dependency>
40         </dependencies>
41     </dependencyManagement>
42
43
44     <dependencies>
45         <dependency>
46             <groupId>org.opendaylight.mdsal.model</groupId>
47             <artifactId>odl-mdsal-model-rfc6991</artifactId>
48             <type>xml</type>
49             <classifier>features</classifier>
50         </dependency>
51         <dependency>
52             <groupId>org.opendaylight.odlparent</groupId>
53             <artifactId>odl-netty-4</artifactId>
54             <type>xml</type>
55             <classifier>features</classifier>
56         </dependency>
57         <!-- bundle dependencies -->
58         <dependency>
59             <groupId>${project.groupId}</groupId>
60             <artifactId>openflow-protocol-api</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>${project.groupId}</groupId>
64             <artifactId>openflow-protocol-spi</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>${project.groupId}</groupId>
68             <artifactId>openflow-protocol-impl</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>${project.groupId}</groupId>
72             <artifactId>openflowjava-util</artifactId>
73         </dependency>
74         <!-- config files -->
75         <dependency>
76             <groupId>${project.groupId}</groupId>
77             <artifactId>openflowjava-blueprint-config</artifactId>
78             <type>xml</type>
79             <classifier>config</classifier>
80         </dependency>
81         <dependency>
82             <groupId>${project.groupId}</groupId>
83             <artifactId>openflowjava-blueprint-config</artifactId>
84             <type>xml</type>
85             <classifier>legacyConfig</classifier>
86         </dependency>
87     </dependencies>
88
89 </project>