blob: 60a726d3dd3d4033128717cb905f952dea24e342 [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>
23 <groupId>org.onlab.onos</groupId>
Yuta HIGUCHIe76a24d2014-09-27 00:48:34 -070024 <artifactId>onos-core-store</artifactId>
tom0eb04ca2014-08-25 14:34:51 -070025 <version>1.0.0-SNAPSHOT</version>
26 <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
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -080034 <properties>
35 <copycat.version>0.4.0-SNAPSHOT</copycat.version>
36 </properties>
37
tom0eb04ca2014-08-25 14:34:51 -070038 <dependencies>
39 <dependency>
40 <groupId>org.onlab.onos</groupId>
Yuta HIGUCHIe76a24d2014-09-27 00:48:34 -070041 <artifactId>onos-core-serializers</artifactId>
42 <version>${project.version}</version>
43 </dependency>
tom73094832014-09-29 13:47:08 -070044
Madan Jampanic9ed9be2014-10-02 16:13:11 -070045 <dependency>
46 <groupId>org.onlab.onos</groupId>
47 <artifactId>onlab-netty</artifactId>
48 <version>${project.version}</version>
49 </dependency>
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -080050<!--
Madan Jampani08822c42014-11-04 17:17:46 -080051 <dependency>
52 <groupId>net.kuujo.copycat</groupId>
53 <artifactId>copycat</artifactId>
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -080054 <version>${copycat.version}</version>
Madan Jampani08822c42014-11-04 17:17:46 -080055 </dependency>
56
57 <dependency>
58 <groupId>net.kuujo.copycat</groupId>
59 <artifactId>copycat-chronicle</artifactId>
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -080060 <version>${copycat.version}</version>
Madan Jampani08822c42014-11-04 17:17:46 -080061 </dependency>
62
63 <dependency>
64 <groupId>net.kuujo.copycat</groupId>
65 <artifactId>copycat-tcp</artifactId>
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -080066 <version>${copycat.version}</version>
Madan Jampani08822c42014-11-04 17:17:46 -080067 </dependency>
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -080068-->
Madan Jampani08822c42014-11-04 17:17:46 -080069
tom73094832014-09-29 13:47:08 -070070 <dependency>
71 <groupId>com.fasterxml.jackson.core</groupId>
72 <artifactId>jackson-databind</artifactId>
73 </dependency>
74 <dependency>
75 <groupId>com.fasterxml.jackson.core</groupId>
76 <artifactId>jackson-annotations</artifactId>
77 </dependency>
78
Yuta HIGUCHIe76a24d2014-09-27 00:48:34 -070079 <dependency>
Yuta HIGUCHI0390ffb2014-10-09 23:45:16 -070080 <groupId>com.google.guava</groupId>
81 <artifactId>guava-testlib</artifactId>
82 <scope>test</scope>
83 </dependency>
84 <dependency>
85 <groupId>org.apache.commons</groupId>
86 <artifactId>commons-lang3</artifactId>
87 </dependency>
Yuta HIGUCHI47c40882014-10-10 18:44:37 -070088 <dependency>
89 <groupId>org.easymock</groupId>
90 <artifactId>easymock</artifactId>
91 <scope>test</scope>
92 </dependency>
Yuta HIGUCHI4d187952014-10-16 19:59:35 -070093 <dependency>
94 <groupId>org.onlab.onos</groupId>
95 <artifactId>onos-api</artifactId>
96 <classifier>tests</classifier>
97 <scope>test</scope>
98 </dependency>
Yuta HIGUCHI41f2ec02014-10-27 09:54:43 -070099 <dependency>
100 <groupId>com.hazelcast</groupId>
101 <artifactId>hazelcast</artifactId>
102 </dependency>
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -0800103
104 <!-- for shaded copycat -->
105 <dependency>
106 <groupId>org.onlab.onos</groupId>
107 <artifactId>onlab-thirdparty</artifactId>
108 </dependency>
tom0eb04ca2014-08-25 14:34:51 -0700109 </dependencies>
110
tom0eb04ca2014-08-25 14:34:51 -0700111</project>