CNlucius | 74fd494 | 2015-07-20 14:28:04 +0800 | [diff] [blame] | 1 | <?xml version="1.0"?> |
YuanyouZhang | ebe1261 | 2015-08-05 18:19:09 +0800 | [diff] [blame] | 2 | <!-- |
Brian O'Connor | a09fe5b | 2017-08-03 21:12:30 -0700 | [diff] [blame] | 3 | ~ Copyright 2015-present Open Networking Foundation |
YuanyouZhang | ebe1261 | 2015-08-05 18:19:09 +0800 | [diff] [blame] | 4 | ~ |
| 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 | --> |
CNlucius | 74fd494 | 2015-07-20 14:28:04 +0800 | [diff] [blame] | 17 | <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> |
ONOS Jenkins User | f5ad939 | 2018-02-20 23:58:33 +0000 | [diff] [blame] | 24 | <version>1.11.2-SNAPSHOT</version> |
CNlucius | 74fd494 | 2015-07-20 14:28:04 +0800 | [diff] [blame] | 25 | </parent> |
Yuta HIGUCHI | 35b83be | 2017-07-20 20:44:50 -0700 | [diff] [blame] | 26 | <artifactId>onos-protocols-ovsdb-api</artifactId> |
CNlucius | 74fd494 | 2015-07-20 14:28:04 +0800 | [diff] [blame] | 27 | <packaging>bundle</packaging> |
| 28 | |
Ayaka Koshibe | 17c4651 | 2015-07-24 11:29:40 -0700 | [diff] [blame] | 29 | <description>ONOS OVSDB plugin API</description> |
CNlucius | 74fd494 | 2015-07-20 14:28:04 +0800 | [diff] [blame] | 30 | <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> |
YuanyouZhang | d06bb6b | 2015-08-05 16:59:07 +0800 | [diff] [blame] | 49 | <dependency> |
| 50 | <groupId>org.onosproject</groupId> |
andrea | ed976a4 | 2015-10-05 14:38:25 -0700 | [diff] [blame] | 51 | <artifactId>onos-api</artifactId> |
| 52 | </dependency> |
| 53 | <dependency> |
| 54 | <groupId>org.onosproject</groupId> |
YuanyouZhang | d06bb6b | 2015-08-05 16:59:07 +0800 | [diff] [blame] | 55 | <artifactId>onos-ovsdb-rfc</artifactId> |
YuanyouZhang | d06bb6b | 2015-08-05 16:59:07 +0800 | [diff] [blame] | 56 | </dependency> |
CNlucius | 74fd494 | 2015-07-20 14:28:04 +0800 | [diff] [blame] | 57 | </dependencies> |
| 58 | |
| 59 | </project> |