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 | a09fe5b | 2017-08-03 21:12:30 -0700 | [diff] [blame] | 3 | ~ Copyright 2014-present Open Networking Foundation |
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> |
ONOS Jenkins User | 17eaa64 | 2018-04-13 23:03:15 +0000 | [diff] [blame^] | 25 | <version>1.13.0-rc1</version> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 26 | </parent> |
| 27 | |
Yuta HIGUCHI | e76a24d | 2014-09-27 00:48:34 -0700 | [diff] [blame] | 28 | <artifactId>onos-core-dist</artifactId> |
tom | e2dc27a | 2014-09-09 12:41:21 -0700 | [diff] [blame] | 29 | <packaging>bundle</packaging> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 30 | |
Yuta HIGUCHI | e76a24d | 2014-09-27 00:48:34 -0700 | [diff] [blame] | 31 | <description>ONOS Gossip based distributed store subsystems</description> |
tom | b1260e4 | 2014-08-26 18:39:57 -0700 | [diff] [blame] | 32 | |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 33 | <dependencies> |
Madan Jampani | bd6845d | 2015-02-25 11:43:48 -0800 | [diff] [blame] | 34 | |
| 35 | <dependency> |
| 36 | <groupId>org.apache.commons</groupId> |
| 37 | <artifactId>commons-math3</artifactId> |
Madan Jampani | bd6845d | 2015-02-25 11:43:48 -0800 | [diff] [blame] | 38 | </dependency> |
| 39 | |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 40 | <dependency> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 41 | <groupId>org.onosproject</groupId> |
Yuta HIGUCHI | e76a24d | 2014-09-27 00:48:34 -0700 | [diff] [blame] | 42 | <artifactId>onos-core-serializers</artifactId> |
| 43 | <version>${project.version}</version> |
| 44 | </dependency> |
tom | 7309483 | 2014-09-29 13:47:08 -0700 | [diff] [blame] | 45 | |
Madan Jampani | c9ed9be | 2014-10-02 16:13:11 -0700 | [diff] [blame] | 46 | <dependency> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 47 | <groupId>org.onosproject</groupId> |
Brian O'Connor | c6713a8 | 2015-02-24 11:55:48 -0800 | [diff] [blame] | 48 | <artifactId>onlab-misc</artifactId> |
Brian O'Connor | c6713a8 | 2015-02-24 11:55:48 -0800 | [diff] [blame] | 49 | </dependency> |
| 50 | |
| 51 | <dependency> |
| 52 | <groupId>org.onosproject</groupId> |
Thomas Vachuska | 90b453f | 2015-01-30 18:57:14 -0800 | [diff] [blame] | 53 | <artifactId>onos-core-common</artifactId> |
| 54 | </dependency> |
Madan Jampani | 08822c4 | 2014-11-04 17:17:46 -0800 | [diff] [blame] | 55 | |
tom | 7309483 | 2014-09-29 13:47:08 -0700 | [diff] [blame] | 56 | <dependency> |
Aaron Kruglikov | 66cf0b9 | 2015-10-26 15:46:54 -0700 | [diff] [blame] | 57 | <groupId>org.onosproject</groupId> |
| 58 | <artifactId>onos-core-persistence</artifactId> |
| 59 | <version>${project.version}</version> |
| 60 | </dependency> |
| 61 | |
| 62 | <dependency> |
tom | 7309483 | 2014-09-29 13:47:08 -0700 | [diff] [blame] | 63 | <groupId>com.fasterxml.jackson.core</groupId> |
| 64 | <artifactId>jackson-databind</artifactId> |
| 65 | </dependency> |
Madan Jampani | 32347e0 | 2016-01-21 13:49:13 -0800 | [diff] [blame] | 66 | |
tom | 7309483 | 2014-09-29 13:47:08 -0700 | [diff] [blame] | 67 | <dependency> |
| 68 | <groupId>com.fasterxml.jackson.core</groupId> |
| 69 | <artifactId>jackson-annotations</artifactId> |
| 70 | </dependency> |
| 71 | |
Yuta HIGUCHI | e76a24d | 2014-09-27 00:48:34 -0700 | [diff] [blame] | 72 | <dependency> |
Yuta HIGUCHI | 0390ffb | 2014-10-09 23:45:16 -0700 | [diff] [blame] | 73 | <groupId>com.google.guava</groupId> |
| 74 | <artifactId>guava-testlib</artifactId> |
| 75 | <scope>test</scope> |
| 76 | </dependency> |
Madan Jampani | 32347e0 | 2016-01-21 13:49:13 -0800 | [diff] [blame] | 77 | |
Yuta HIGUCHI | 0390ffb | 2014-10-09 23:45:16 -0700 | [diff] [blame] | 78 | <dependency> |
| 79 | <groupId>org.apache.commons</groupId> |
| 80 | <artifactId>commons-lang3</artifactId> |
| 81 | </dependency> |
Madan Jampani | 32347e0 | 2016-01-21 13:49:13 -0800 | [diff] [blame] | 82 | |
Yuta HIGUCHI | 47c4088 | 2014-10-10 18:44:37 -0700 | [diff] [blame] | 83 | <dependency> |
Thomas Vachuska | ba082b8 | 2015-05-20 13:47:38 -0700 | [diff] [blame] | 84 | <groupId>org.easymock</groupId> |
| 85 | <artifactId>easymock</artifactId> |
| 86 | <scope>test</scope> |
Yuta HIGUCHI | 47c4088 | 2014-10-10 18:44:37 -0700 | [diff] [blame] | 87 | </dependency> |
Madan Jampani | 32347e0 | 2016-01-21 13:49:13 -0800 | [diff] [blame] | 88 | |
Yuta HIGUCHI | 4d18795 | 2014-10-16 19:59:35 -0700 | [diff] [blame] | 89 | <dependency> |
Thomas Vachuska | ba082b8 | 2015-05-20 13:47:38 -0700 | [diff] [blame] | 90 | <groupId>org.onosproject</groupId> |
| 91 | <artifactId>onos-api</artifactId> |
| 92 | <classifier>tests</classifier> |
| 93 | <scope>test</scope> |
Yuta HIGUCHI | 151cad8 | 2015-02-04 23:26:50 -0800 | [diff] [blame] | 94 | </dependency> |
Aaron Kruglikov | f3d2f49 | 2016-02-17 16:26:50 -0800 | [diff] [blame] | 95 | <dependency> |
| 96 | <groupId>commons-pool</groupId> |
| 97 | <artifactId>commons-pool</artifactId> |
Aaron Kruglikov | f3d2f49 | 2016-02-17 16:26:50 -0800 | [diff] [blame] | 98 | </dependency> |
| 99 | <dependency> |
| 100 | <groupId>io.netty</groupId> |
| 101 | <artifactId>netty-transport</artifactId> |
Aaron Kruglikov | f3d2f49 | 2016-02-17 16:26:50 -0800 | [diff] [blame] | 102 | </dependency> |
| 103 | <dependency> |
| 104 | <groupId>io.netty</groupId> |
| 105 | <artifactId>netty-codec</artifactId> |
Aaron Kruglikov | f3d2f49 | 2016-02-17 16:26:50 -0800 | [diff] [blame] | 106 | </dependency> |
| 107 | <dependency> |
| 108 | <groupId>io.netty</groupId> |
| 109 | <artifactId>netty-handler</artifactId> |
Aaron Kruglikov | f3d2f49 | 2016-02-17 16:26:50 -0800 | [diff] [blame] | 110 | </dependency> |
| 111 | <dependency> |
| 112 | <groupId>io.netty</groupId> |
| 113 | <artifactId>netty-transport-native-epoll</artifactId> |
| 114 | <version>${netty4.version}</version> |
| 115 | </dependency> |
Jonathan Hart | 5dc9a4e | 2017-01-13 09:09:57 -0800 | [diff] [blame] | 116 | <dependency> |
| 117 | <groupId>io.netty</groupId> |
| 118 | <artifactId>netty-resolver</artifactId> |
Jonathan Hart | 5dc9a4e | 2017-01-13 09:09:57 -0800 | [diff] [blame] | 119 | </dependency> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 120 | </dependencies> |
Yuta HIGUCHI | f05db40 | 2016-08-12 18:36:33 -0700 | [diff] [blame] | 121 | |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 122 | </project> |