blob: a7efb654a7cdb7d0719db8d94ee01374927a7b00 [file] [log] [blame]
CNlucius74fd4942015-07-20 14:28:04 +08001<?xml version="1.0"?>
YuanyouZhangebe12612015-08-05 18:19:09 +08002<!--
Brian O'Connor5ab426f2016-04-09 01:19:45 -07003 ~ Copyright 2015-present Open Networking Laboratory
YuanyouZhangebe12612015-08-05 18:19:09 +08004 ~
5 ~ Licensed under the Apache License, Version 2.0 (the "License");
6 ~ you may not use this file except in compliance with the License.
7 ~ You may obtain a copy of the License at
8 ~
9 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~
11 ~ Unless required by applicable law or agreed to in writing, software
12 ~ distributed under the License is distributed on an "AS IS" BASIS,
13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ~ See the License for the specific language governing permissions and
15 ~ limitations under the License.
16 -->
CNlucius74fd4942015-07-20 14:28:04 +080017<project
18 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
19 xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
20 <modelVersion>4.0.0</modelVersion>
21 <parent>
22 <groupId>org.onosproject</groupId>
23 <artifactId>onos-ovsdb</artifactId>
Ray Milkey17463db2017-08-01 10:46:24 -070024 <version>1.11.0-b3</version>
CNlucius74fd4942015-07-20 14:28:04 +080025 </parent>
Yuta HIGUCHI35b83be2017-07-20 20:44:50 -070026 <artifactId>onos-protocols-ovsdb-api</artifactId>
CNlucius74fd4942015-07-20 14:28:04 +080027 <packaging>bundle</packaging>
28
Ayaka Koshibe17c46512015-07-24 11:29:40 -070029 <description>ONOS OVSDB plugin API</description>
CNlucius74fd4942015-07-20 14:28:04 +080030 <dependencies>
31 <dependency>
32 <groupId>junit</groupId>
33 <artifactId>junit</artifactId>
34 <scope>test</scope>
35 </dependency>
36 <dependency>
37 <groupId>commons-pool</groupId>
38 <artifactId>commons-pool</artifactId>
39 </dependency>
40 <dependency>
41 <groupId>io.netty</groupId>
42 <artifactId>netty-transport</artifactId>
43 </dependency>
44 <dependency>
45 <groupId>io.netty</groupId>
46 <artifactId>netty-transport-native-epoll</artifactId>
47 <version>${netty4.version}</version>
48 </dependency>
YuanyouZhangd06bb6b2015-08-05 16:59:07 +080049 <dependency>
50 <groupId>org.onosproject</groupId>
andreaed976a42015-10-05 14:38:25 -070051 <artifactId>onos-api</artifactId>
52 </dependency>
53 <dependency>
54 <groupId>org.onosproject</groupId>
YuanyouZhangd06bb6b2015-08-05 16:59:07 +080055 <artifactId>onos-ovsdb-rfc</artifactId>
YuanyouZhangd06bb6b2015-08-05 16:59:07 +080056 </dependency>
CNlucius74fd4942015-07-20 14:28:04 +080057 </dependencies>
58
59</project>