084ffe9b954b9fd9eac241f56713c1995958be70
[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"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5
6     <modelVersion>4.0.0</modelVersion>
7     <parent>
8         <groupId>org.opendaylight.odlparent</groupId>
9         <artifactId>single-feature-parent</artifactId>
10         <version>3.0.2</version>
11         <relativePath/>
12     </parent>
13
14     <groupId>org.opendaylight.openflowplugin.openflowjava</groupId>
15     <artifactId>odl-openflowjava-protocol</artifactId>
16     <version>0.6.0-SNAPSHOT</version>
17     <packaging>feature</packaging>
18
19     <!-- <name> formatting is used by autorelease to parse and notify projects on
20          build failure. Please do not modify this unless you have a good reason. -->
21     <name>ODL :: openflowjava :: ${project.artifactId}</name>
22
23     <properties>
24         <controller.mdsal.version>1.7.0-SNAPSHOT</controller.mdsal.version>
25         <mdsal.version>2.4.0-SNAPSHOT</mdsal.version>
26         <mdsal.model.version>0.12.0-SNAPSHOT</mdsal.model.version>
27     </properties>
28
29
30     <dependencyManagement>
31         <dependencies>
32             <!-- This project -->
33             <dependency>
34                 <groupId>org.opendaylight.openflowplugin</groupId>
35                 <artifactId>openflowplugin-artifacts</artifactId>
36                 <version>${project.version}</version>
37                 <scope>import</scope>
38                 <type>pom</type>
39             </dependency>
40
41             <!-- Netty -->
42             <dependency>
43                 <groupId>org.opendaylight.odlparent</groupId>
44                 <artifactId>odlparent-artifacts</artifactId>
45                 <version>3.0.2</version>
46                 <scope>import</scope>
47                 <type>pom</type>
48             </dependency>
49
50             <!-- MD-SAL -->
51             <dependency>
52                 <groupId>org.opendaylight.mdsal</groupId>
53                 <artifactId>mdsal-artifacts</artifactId>
54                 <version>${mdsal.version}</version>
55                 <scope>import</scope>
56                 <type>pom</type>
57             </dependency>
58
59             <dependency>
60                 <groupId>org.opendaylight.mdsal.model</groupId>
61                 <artifactId>mdsal-model-artifacts</artifactId>
62                 <version>${mdsal.model.version}</version>
63                 <scope>import</scope>
64                 <type>pom</type>
65             </dependency>
66
67             <!-- Controller infrastructure -->
68             <dependency>
69                 <groupId>org.opendaylight.controller</groupId>
70                 <artifactId>mdsal-artifacts</artifactId>
71                 <version>${controller.mdsal.version}</version>
72                 <scope>import</scope>
73                 <type>pom</type>
74             </dependency>
75         </dependencies>
76     </dependencyManagement>
77
78
79     <dependencies>
80         <dependency>
81             <groupId>org.opendaylight.mdsal</groupId>
82             <artifactId>odl-mdsal-binding-base</artifactId>
83             <type>xml</type>
84             <classifier>features</classifier>
85         </dependency>
86         <dependency>
87             <groupId>org.opendaylight.mdsal.model</groupId>
88             <artifactId>odl-mdsal-models</artifactId>
89             <type>xml</type>
90             <classifier>features</classifier>
91         </dependency>
92         <dependency>
93             <groupId>org.opendaylight.controller</groupId>
94             <artifactId>odl-mdsal-common</artifactId>
95             <type>xml</type>
96             <classifier>features</classifier>
97         </dependency>
98         <dependency>
99             <groupId>org.opendaylight.odlparent</groupId>
100             <artifactId>odl-netty-4</artifactId>
101             <type>xml</type>
102             <classifier>features</classifier>
103         </dependency>
104         <!-- bundle dependencies -->
105         <dependency>
106             <groupId>${project.groupId}</groupId>
107             <artifactId>openflow-protocol-api</artifactId>
108         </dependency>
109         <dependency>
110             <groupId>${project.groupId}</groupId>
111             <artifactId>openflow-protocol-spi</artifactId>
112         </dependency>
113         <dependency>
114             <groupId>${project.groupId}</groupId>
115             <artifactId>openflow-protocol-impl</artifactId>
116         </dependency>
117         <dependency>
118             <groupId>${project.groupId}</groupId>
119             <artifactId>openflowjava-util</artifactId>
120         </dependency>
121         <!-- config files -->
122         <dependency>
123             <groupId>${project.groupId}</groupId>
124             <artifactId>openflowjava-blueprint-config</artifactId>
125             <type>xml</type>
126             <classifier>config</classifier>
127         </dependency>
128         <dependency>
129             <groupId>${project.groupId}</groupId>
130             <artifactId>openflowjava-blueprint-config</artifactId>
131             <type>xml</type>
132             <classifier>legacyConfig</classifier>
133         </dependency>
134     </dependencies>
135
136 </project>