blob: 2f0f977706507a661321e007c581cd612e5317b4 [file] [log] [blame]
tom0eb04ca2014-08-25 14:34:51 -07001<?xml version="1.0" encoding="UTF-8"?>
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07002<!--
3 ~ Copyright 2014 Open Networking Laboratory
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 -->
tom0eb04ca2014-08-25 14:34:51 -070017<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'Connorabafb502014-12-02 22:26:20 -080023 <groupId>org.onosproject</groupId>
Yuta HIGUCHIe76a24d2014-09-27 00:48:34 -070024 <artifactId>onos-core-store</artifactId>
Brian O'Connor7f2e9bf2014-12-04 23:35:13 -080025 <version>1.1.0-SNAPSHOT</version>
tom0eb04ca2014-08-25 14:34:51 -070026 <relativePath>../pom.xml</relativePath>
27 </parent>
28
Yuta HIGUCHIe76a24d2014-09-27 00:48:34 -070029 <artifactId>onos-core-dist</artifactId>
tome2dc27a2014-09-09 12:41:21 -070030 <packaging>bundle</packaging>
tom0eb04ca2014-08-25 14:34:51 -070031
Yuta HIGUCHIe76a24d2014-09-27 00:48:34 -070032 <description>ONOS Gossip based distributed store subsystems</description>
tomb1260e42014-08-26 18:39:57 -070033
tom0eb04ca2014-08-25 14:34:51 -070034 <dependencies>
35 <dependency>
Brian O'Connorabafb502014-12-02 22:26:20 -080036 <groupId>org.onosproject</groupId>
Yuta HIGUCHIe76a24d2014-09-27 00:48:34 -070037 <artifactId>onos-core-serializers</artifactId>
38 <version>${project.version}</version>
39 </dependency>
tom73094832014-09-29 13:47:08 -070040
Madan Jampanic9ed9be2014-10-02 16:13:11 -070041 <dependency>
Brian O'Connorabafb502014-12-02 22:26:20 -080042 <groupId>org.onosproject</groupId>
Madan Jampanic9ed9be2014-10-02 16:13:11 -070043 <artifactId>onlab-netty</artifactId>
44 <version>${project.version}</version>
45 </dependency>
Thomas Vachuska90b453f2015-01-30 18:57:14 -080046
47 <dependency>
48 <groupId>org.onosproject</groupId>
49 <artifactId>onos-core-common</artifactId>
50 </dependency>
Madan Jampani08822c42014-11-04 17:17:46 -080051
tom73094832014-09-29 13:47:08 -070052 <dependency>
Madan Jampani778f7ad2014-11-05 22:46:15 -080053 <groupId>org.mapdb</groupId>
54 <artifactId>mapdb</artifactId>
55 <version>1.0.6</version>
56 </dependency>
57
58 <dependency>
tom73094832014-09-29 13:47:08 -070059 <groupId>com.fasterxml.jackson.core</groupId>
60 <artifactId>jackson-databind</artifactId>
61 </dependency>
62 <dependency>
63 <groupId>com.fasterxml.jackson.core</groupId>
64 <artifactId>jackson-annotations</artifactId>
65 </dependency>
66
Yuta HIGUCHIe76a24d2014-09-27 00:48:34 -070067 <dependency>
Yuta HIGUCHI0390ffb2014-10-09 23:45:16 -070068 <groupId>com.google.guava</groupId>
69 <artifactId>guava-testlib</artifactId>
70 <scope>test</scope>
71 </dependency>
72 <dependency>
73 <groupId>org.apache.commons</groupId>
74 <artifactId>commons-lang3</artifactId>
75 </dependency>
Yuta HIGUCHI47c40882014-10-10 18:44:37 -070076 <dependency>
77 <groupId>org.easymock</groupId>
78 <artifactId>easymock</artifactId>
79 <scope>test</scope>
80 </dependency>
Yuta HIGUCHI4d187952014-10-16 19:59:35 -070081 <dependency>
Brian O'Connorabafb502014-12-02 22:26:20 -080082 <groupId>org.onosproject</groupId>
Yuta HIGUCHI4d187952014-10-16 19:59:35 -070083 <artifactId>onos-api</artifactId>
84 <classifier>tests</classifier>
85 <scope>test</scope>
86 </dependency>
Yuta HIGUCHI41f2ec02014-10-27 09:54:43 -070087 <dependency>
88 <groupId>com.hazelcast</groupId>
89 <artifactId>hazelcast</artifactId>
90 </dependency>
Yuta HIGUCHI151cad82015-02-04 23:26:50 -080091 <dependency>
92 <groupId>com.hazelcast</groupId>
93 <artifactId>hazelcast</artifactId>
94 <classifier>tests</classifier>
95 <scope>test</scope>
96 </dependency>
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -080097
98 <!-- for shaded copycat -->
99 <dependency>
Brian O'Connorabafb502014-12-02 22:26:20 -0800100 <groupId>org.onosproject</groupId>
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -0800101 <artifactId>onlab-thirdparty</artifactId>
102 </dependency>
tom0eb04ca2014-08-25 14:34:51 -0700103 </dependencies>
104
tom0eb04ca2014-08-25 14:34:51 -0700105</project>