blob: 33517c7f220f1e3899554829660ca46f1181b073 [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>
22 <artifactId>onos-api</artifactId>
23 </dependency>
24 <dependency>
Yuta HIGUCHIe76a24d2014-09-27 00:48:34 -070025 <groupId>org.onlab.onos</groupId>
26 <artifactId>onos-core-serializers</artifactId>
27 <version>${project.version}</version>
28 </dependency>
tom73094832014-09-29 13:47:08 -070029
30
31 <dependency>
32 <groupId>org.onlab.onos</groupId>
33 <artifactId>onlab-nio</artifactId>
34 <version>${project.version}</version>
35 </dependency>
Madan Jampanic9ed9be2014-10-02 16:13:11 -070036
37 <dependency>
38 <groupId>org.onlab.onos</groupId>
39 <artifactId>onlab-netty</artifactId>
40 <version>${project.version}</version>
41 </dependency>
tom73094832014-09-29 13:47:08 -070042
43 <dependency>
44 <groupId>com.fasterxml.jackson.core</groupId>
45 <artifactId>jackson-databind</artifactId>
46 </dependency>
47 <dependency>
48 <groupId>com.fasterxml.jackson.core</groupId>
49 <artifactId>jackson-annotations</artifactId>
50 </dependency>
51
Yuta HIGUCHIe76a24d2014-09-27 00:48:34 -070052 <dependency>
tom0eb04ca2014-08-25 14:34:51 -070053 <groupId>org.apache.felix</groupId>
54 <artifactId>org.apache.felix.scr.annotations</artifactId>
55 </dependency>
Yuta HIGUCHI0390ffb2014-10-09 23:45:16 -070056 <dependency>
57 <groupId>com.google.guava</groupId>
58 <artifactId>guava-testlib</artifactId>
59 <scope>test</scope>
60 </dependency>
61 <dependency>
62 <groupId>org.apache.commons</groupId>
63 <artifactId>commons-lang3</artifactId>
64 </dependency>
Yuta HIGUCHI47c40882014-10-10 18:44:37 -070065 <dependency>
66 <groupId>org.easymock</groupId>
67 <artifactId>easymock</artifactId>
68 <scope>test</scope>
69 </dependency>
tom0eb04ca2014-08-25 14:34:51 -070070 </dependencies>
71
72 <build>
73 <plugins>
74 <plugin>
75 <groupId>org.apache.felix</groupId>
76 <artifactId>maven-scr-plugin</artifactId>
77 </plugin>
78 </plugins>
79 </build>
80
81</project>