tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Thomas Vachuska | 4f1a60c | 2014-10-28 13:39:07 -0700 | [diff] [blame] | 2 | <!-- |
Brian O'Connor | 5ab426f | 2016-04-09 01:19:45 -0700 | [diff] [blame] | 3 | ~ Copyright 2014-present Open Networking Laboratory |
Thomas Vachuska | 4f1a60c | 2014-10-28 13:39:07 -0700 | [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 | --> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 17 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 18 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 19 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | |
| 22 | <parent> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 23 | <groupId>org.onosproject</groupId> |
Yuta HIGUCHI | e76a24d | 2014-09-27 00:48:34 -0700 | [diff] [blame] | 24 | <artifactId>onos-core-store</artifactId> |
Brian O'Connor | e642f7c | 2016-05-23 18:33:04 -0700 | [diff] [blame] | 25 | <version>1.7.0-SNAPSHOT</version> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 26 | <relativePath>../pom.xml</relativePath> |
| 27 | </parent> |
| 28 | |
Yuta HIGUCHI | e76a24d | 2014-09-27 00:48:34 -0700 | [diff] [blame] | 29 | <artifactId>onos-core-dist</artifactId> |
tom | e2dc27a | 2014-09-09 12:41:21 -0700 | [diff] [blame] | 30 | <packaging>bundle</packaging> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 31 | |
Yuta HIGUCHI | e76a24d | 2014-09-27 00:48:34 -0700 | [diff] [blame] | 32 | <description>ONOS Gossip based distributed store subsystems</description> |
tom | b1260e4 | 2014-08-26 18:39:57 -0700 | [diff] [blame] | 33 | |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 34 | <dependencies> |
Madan Jampani | bd6845d | 2015-02-25 11:43:48 -0800 | [diff] [blame] | 35 | |
| 36 | <dependency> |
| 37 | <groupId>org.apache.commons</groupId> |
| 38 | <artifactId>commons-math3</artifactId> |
Jian Li | 3276d15 | 2016-04-13 15:30:32 -0700 | [diff] [blame] | 39 | <version>3.6.1</version> |
Madan Jampani | bd6845d | 2015-02-25 11:43:48 -0800 | [diff] [blame] | 40 | </dependency> |
| 41 | |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 42 | <dependency> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 43 | <groupId>org.onosproject</groupId> |
Yuta HIGUCHI | e76a24d | 2014-09-27 00:48:34 -0700 | [diff] [blame] | 44 | <artifactId>onos-core-serializers</artifactId> |
| 45 | <version>${project.version}</version> |
| 46 | </dependency> |
tom | 7309483 | 2014-09-29 13:47:08 -0700 | [diff] [blame] | 47 | |
Madan Jampani | c9ed9be | 2014-10-02 16:13:11 -0700 | [diff] [blame] | 48 | <dependency> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 49 | <groupId>org.onosproject</groupId> |
Brian O'Connor | c6713a8 | 2015-02-24 11:55:48 -0800 | [diff] [blame] | 50 | <artifactId>onlab-misc</artifactId> |
| 51 | <version>${project.version}</version> |
| 52 | </dependency> |
| 53 | |
| 54 | <dependency> |
| 55 | <groupId>org.onosproject</groupId> |
Thomas Vachuska | 90b453f | 2015-01-30 18:57:14 -0800 | [diff] [blame] | 56 | <artifactId>onos-core-common</artifactId> |
| 57 | </dependency> |
Madan Jampani | 08822c4 | 2014-11-04 17:17:46 -0800 | [diff] [blame] | 58 | |
tom | 7309483 | 2014-09-29 13:47:08 -0700 | [diff] [blame] | 59 | <dependency> |
Aaron Kruglikov | 66cf0b9 | 2015-10-26 15:46:54 -0700 | [diff] [blame] | 60 | <groupId>org.onosproject</groupId> |
| 61 | <artifactId>onos-core-persistence</artifactId> |
| 62 | <version>${project.version}</version> |
| 63 | </dependency> |
| 64 | |
| 65 | <dependency> |
tom | 7309483 | 2014-09-29 13:47:08 -0700 | [diff] [blame] | 66 | <groupId>com.fasterxml.jackson.core</groupId> |
| 67 | <artifactId>jackson-databind</artifactId> |
| 68 | </dependency> |
Madan Jampani | 32347e0 | 2016-01-21 13:49:13 -0800 | [diff] [blame] | 69 | |
tom | 7309483 | 2014-09-29 13:47:08 -0700 | [diff] [blame] | 70 | <dependency> |
| 71 | <groupId>com.fasterxml.jackson.core</groupId> |
| 72 | <artifactId>jackson-annotations</artifactId> |
| 73 | </dependency> |
| 74 | |
Yuta HIGUCHI | e76a24d | 2014-09-27 00:48:34 -0700 | [diff] [blame] | 75 | <dependency> |
Yuta HIGUCHI | 0390ffb | 2014-10-09 23:45:16 -0700 | [diff] [blame] | 76 | <groupId>com.google.guava</groupId> |
| 77 | <artifactId>guava-testlib</artifactId> |
| 78 | <scope>test</scope> |
| 79 | </dependency> |
Madan Jampani | 32347e0 | 2016-01-21 13:49:13 -0800 | [diff] [blame] | 80 | |
Yuta HIGUCHI | 0390ffb | 2014-10-09 23:45:16 -0700 | [diff] [blame] | 81 | <dependency> |
| 82 | <groupId>org.apache.commons</groupId> |
| 83 | <artifactId>commons-lang3</artifactId> |
| 84 | </dependency> |
Madan Jampani | 32347e0 | 2016-01-21 13:49:13 -0800 | [diff] [blame] | 85 | |
Yuta HIGUCHI | 47c4088 | 2014-10-10 18:44:37 -0700 | [diff] [blame] | 86 | <dependency> |
Thomas Vachuska | ba082b8 | 2015-05-20 13:47:38 -0700 | [diff] [blame] | 87 | <groupId>org.easymock</groupId> |
| 88 | <artifactId>easymock</artifactId> |
| 89 | <scope>test</scope> |
Yuta HIGUCHI | 47c4088 | 2014-10-10 18:44:37 -0700 | [diff] [blame] | 90 | </dependency> |
Madan Jampani | 32347e0 | 2016-01-21 13:49:13 -0800 | [diff] [blame] | 91 | |
Yuta HIGUCHI | 4d18795 | 2014-10-16 19:59:35 -0700 | [diff] [blame] | 92 | <dependency> |
Thomas Vachuska | ba082b8 | 2015-05-20 13:47:38 -0700 | [diff] [blame] | 93 | <groupId>org.onosproject</groupId> |
| 94 | <artifactId>onos-api</artifactId> |
| 95 | <classifier>tests</classifier> |
| 96 | <scope>test</scope> |
Yuta HIGUCHI | 151cad8 | 2015-02-04 23:26:50 -0800 | [diff] [blame] | 97 | </dependency> |
Aaron Kruglikov | f3d2f49 | 2016-02-17 16:26:50 -0800 | [diff] [blame] | 98 | <dependency> |
| 99 | <groupId>commons-pool</groupId> |
| 100 | <artifactId>commons-pool</artifactId> |
| 101 | <version>1.6</version> |
| 102 | </dependency> |
| 103 | <dependency> |
| 104 | <groupId>io.netty</groupId> |
| 105 | <artifactId>netty-transport</artifactId> |
| 106 | <version>${netty4.version}</version> |
| 107 | </dependency> |
| 108 | <dependency> |
| 109 | <groupId>io.netty</groupId> |
| 110 | <artifactId>netty-codec</artifactId> |
| 111 | <version>${netty4.version}</version> |
| 112 | </dependency> |
| 113 | <dependency> |
| 114 | <groupId>io.netty</groupId> |
| 115 | <artifactId>netty-handler</artifactId> |
| 116 | <version>${netty4.version}</version> |
| 117 | </dependency> |
| 118 | <dependency> |
| 119 | <groupId>io.netty</groupId> |
| 120 | <artifactId>netty-transport-native-epoll</artifactId> |
| 121 | <version>${netty4.version}</version> |
| 122 | </dependency> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 123 | </dependencies> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 124 | </project> |