blob: 6482729b05701a94da6f72fc2bb4e7615255610c [file] [log] [blame]
tom0eb04ca2014-08-25 14:34:51 -07001<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5 <modelVersion>4.0.0</modelVersion>
6
7 <parent>
8 <groupId>org.onlab.onos</groupId>
Yuta HIGUCHIe76a24d2014-09-27 00:48:34 -07009 <artifactId>onos-core-store</artifactId>
tom0eb04ca2014-08-25 14:34:51 -070010 <version>1.0.0-SNAPSHOT</version>
11 <relativePath>../pom.xml</relativePath>
12 </parent>
13
Yuta HIGUCHIe76a24d2014-09-27 00:48:34 -070014 <artifactId>onos-core-dist</artifactId>
tome2dc27a2014-09-09 12:41:21 -070015 <packaging>bundle</packaging>
tom0eb04ca2014-08-25 14:34:51 -070016
Yuta HIGUCHIe76a24d2014-09-27 00:48:34 -070017 <description>ONOS Gossip based distributed store subsystems</description>
tomb1260e42014-08-26 18:39:57 -070018
tom0eb04ca2014-08-25 14:34:51 -070019 <dependencies>
20 <dependency>
21 <groupId>org.onlab.onos</groupId>
Yuta HIGUCHIe76a24d2014-09-27 00:48:34 -070022 <artifactId>onos-core-serializers</artifactId>
23 <version>${project.version}</version>
24 </dependency>
tom73094832014-09-29 13:47:08 -070025
Madan Jampanic9ed9be2014-10-02 16:13:11 -070026 <dependency>
27 <groupId>org.onlab.onos</groupId>
28 <artifactId>onlab-netty</artifactId>
29 <version>${project.version}</version>
30 </dependency>
tom73094832014-09-29 13:47:08 -070031
32 <dependency>
33 <groupId>com.fasterxml.jackson.core</groupId>
34 <artifactId>jackson-databind</artifactId>
35 </dependency>
36 <dependency>
37 <groupId>com.fasterxml.jackson.core</groupId>
38 <artifactId>jackson-annotations</artifactId>
39 </dependency>
40
Yuta HIGUCHIe76a24d2014-09-27 00:48:34 -070041 <dependency>
Yuta HIGUCHI0390ffb2014-10-09 23:45:16 -070042 <groupId>com.google.guava</groupId>
43 <artifactId>guava-testlib</artifactId>
44 <scope>test</scope>
45 </dependency>
46 <dependency>
47 <groupId>org.apache.commons</groupId>
48 <artifactId>commons-lang3</artifactId>
49 </dependency>
Yuta HIGUCHI47c40882014-10-10 18:44:37 -070050 <dependency>
51 <groupId>org.easymock</groupId>
52 <artifactId>easymock</artifactId>
53 <scope>test</scope>
54 </dependency>
Yuta HIGUCHI4d187952014-10-16 19:59:35 -070055 <dependency>
56 <groupId>org.onlab.onos</groupId>
57 <artifactId>onos-api</artifactId>
58 <classifier>tests</classifier>
59 <scope>test</scope>
60 </dependency>
tom0eb04ca2014-08-25 14:34:51 -070061 </dependencies>
62
tom0eb04ca2014-08-25 14:34:51 -070063</project>