CNlucius | 74fd494 | 2015-07-20 14:28:04 +0800 | [diff] [blame] | 1 | <?xml version="1.0"?> |
| 2 | <project |
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
| 4 | xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| 5 | <modelVersion>4.0.0</modelVersion> |
| 6 | <parent> |
| 7 | <groupId>org.onosproject</groupId> |
| 8 | <artifactId>onos-ovsdb</artifactId> |
| 9 | <version>1.3.0-SNAPSHOT</version> |
| 10 | </parent> |
| 11 | <artifactId>onos-ovsdb-api</artifactId> |
| 12 | <packaging>bundle</packaging> |
| 13 | |
Ayaka Koshibe | 17c4651 | 2015-07-24 11:29:40 -0700 | [diff] [blame] | 14 | <description>ONOS OVSDB plugin API</description> |
CNlucius | 74fd494 | 2015-07-20 14:28:04 +0800 | [diff] [blame] | 15 | <dependencies> |
| 16 | <dependency> |
| 17 | <groupId>junit</groupId> |
| 18 | <artifactId>junit</artifactId> |
| 19 | <scope>test</scope> |
| 20 | </dependency> |
| 21 | <dependency> |
| 22 | <groupId>commons-pool</groupId> |
| 23 | <artifactId>commons-pool</artifactId> |
| 24 | </dependency> |
| 25 | <dependency> |
| 26 | <groupId>io.netty</groupId> |
| 27 | <artifactId>netty-transport</artifactId> |
| 28 | </dependency> |
| 29 | <dependency> |
| 30 | <groupId>io.netty</groupId> |
| 31 | <artifactId>netty-transport-native-epoll</artifactId> |
| 32 | <version>${netty4.version}</version> |
| 33 | </dependency> |
| 34 | </dependencies> |
| 35 | |
| 36 | </project> |