Release Carbon
[openflowjava.git] / features / features-openflowjava / 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   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.odlparent</groupId>
6     <artifactId>features-parent</artifactId>
7     <version>1.8.1-Carbon</version>
8     <relativePath/>
9   </parent>
10
11   <groupId>org.opendaylight.openflowjava</groupId>
12   <artifactId>features-openflowjava</artifactId>
13   <version>0.9.1-Carbon</version>
14   <packaging>jar</packaging>
15
16   <properties>
17     <config.version>0.6.1-Carbon</config.version>
18     <controller.mdsal.version>1.5.1-Carbon</controller.mdsal.version>
19     <mdsal.version>2.2.1-Carbon</mdsal.version>
20     <mdsal.model.version>0.10.1-Carbon</mdsal.model.version>
21   </properties>
22
23   <dependencyManagement>
24     <dependencies>
25       <!-- This project -->
26       <dependency>
27         <groupId>org.opendaylight.openflowjava</groupId>
28         <artifactId>openflowjava-artifacts</artifactId>
29         <version>${project.version}</version>
30         <scope>import</scope>
31         <type>pom</type>
32       </dependency>
33
34       <!-- This project -->
35       <dependency>
36         <groupId>org.opendaylight.odlparent</groupId>
37         <artifactId>odlparent-artifacts</artifactId>
38         <version>1.8.1-Carbon</version>
39         <scope>import</scope>
40         <type>pom</type>
41       </dependency>
42
43       <!-- MD-SAL -->
44       <dependency>
45         <groupId>org.opendaylight.mdsal</groupId>
46         <artifactId>mdsal-artifacts</artifactId>
47         <version>${mdsal.version}</version>
48         <scope>import</scope>
49         <type>pom</type>
50       </dependency>
51
52       <dependency>
53         <groupId>org.opendaylight.mdsal.model</groupId>
54         <artifactId>mdsal-model-artifacts</artifactId>
55         <version>${mdsal.model.version}</version>
56         <scope>import</scope>
57         <type>pom</type>
58       </dependency>
59
60       <!-- Controller infrastructure -->
61       <dependency>
62         <groupId>org.opendaylight.controller</groupId>
63         <artifactId>config-artifacts</artifactId>
64         <version>${config.version}</version>
65         <scope>import</scope>
66         <type>pom</type>
67       </dependency>
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     <!-- feature dependencies -->
81     <dependency>
82       <groupId>org.opendaylight.mdsal</groupId>
83       <artifactId>features-mdsal</artifactId>
84       <version>${mdsal.version}</version>
85       <classifier>features</classifier>
86       <type>xml</type>
87     </dependency>
88     <dependency>
89       <groupId>org.opendaylight.mdsal.model</groupId>
90       <artifactId>features-mdsal-model</artifactId>
91       <version>${mdsal.model.version}</version>
92       <classifier>features</classifier>
93       <type>xml</type>
94     </dependency>
95     <dependency>
96       <groupId>org.opendaylight.controller</groupId>
97       <artifactId>features-config</artifactId>
98       <classifier>features</classifier>
99       <type>xml</type>
100     </dependency>
101     <dependency>
102       <groupId>org.opendaylight.controller</groupId>
103       <artifactId>features-mdsal</artifactId>
104       <version>${controller.mdsal.version}</version>
105       <classifier>features</classifier>
106       <type>xml</type>
107     </dependency>
108     <dependency>
109       <groupId>org.opendaylight.odlparent</groupId>
110       <artifactId>features-odlparent</artifactId>
111       <classifier>features</classifier>
112       <type>xml</type>
113     </dependency>
114
115     <!-- bundle dependencies -->
116     <dependency>
117       <groupId>org.opendaylight.openflowjava</groupId>
118       <artifactId>openflow-protocol-api</artifactId>
119     </dependency>
120     <dependency>
121       <groupId>org.opendaylight.openflowjava</groupId>
122       <artifactId>openflow-protocol-spi</artifactId>
123     </dependency>
124     <dependency>
125       <groupId>org.opendaylight.openflowjava</groupId>
126       <artifactId>openflow-protocol-impl</artifactId>
127     </dependency>
128
129     <dependency>
130       <groupId>org.opendaylight.openflowjava</groupId>
131       <artifactId>openflowjava-blueprint-config</artifactId>
132       <type>xml</type>
133       <classifier>config</classifier>
134     </dependency>
135     <dependency>
136       <groupId>org.opendaylight.openflowjava</groupId>
137       <artifactId>openflowjava-blueprint-config</artifactId>
138       <type>xml</type>
139       <classifier>legacyConfig</classifier>
140     </dependency>
141
142     <dependency>
143       <groupId>org.opendaylight.openflowjava</groupId>
144       <artifactId>openflowjava-util</artifactId>
145     </dependency>
146     <dependency>
147       <groupId>${project.groupId}</groupId>
148       <artifactId>openflowjava-config</artifactId>
149       <type>xml</type>
150       <classifier>configstats</classifier>
151     </dependency>
152     <dependency>
153       <groupId>io.netty</groupId>
154       <artifactId>netty-codec</artifactId>
155     </dependency>
156     <dependency>
157       <groupId>io.netty</groupId>
158       <artifactId>netty-handler</artifactId>
159     </dependency>
160     <dependency>
161       <groupId>io.netty</groupId>
162       <artifactId>netty-common</artifactId>
163     </dependency>
164     <dependency>
165       <groupId>io.netty</groupId>
166       <artifactId>netty-buffer</artifactId>
167     </dependency>
168     <dependency>
169       <groupId>io.netty</groupId>
170       <artifactId>netty-transport</artifactId>
171     </dependency>
172     <dependency>
173       <groupId>io.netty</groupId>
174       <artifactId>netty-transport-native-epoll</artifactId>
175       <!-- Explicitly bring in the linux classifier, test may fail on 32-bit linux -->
176       <classifier>linux-x86_64</classifier>
177     </dependency>
178   </dependencies>
179
180 </project>