blob: 246355cd29e24ec67633b07615ac0fe4fc08b6e7 [file] [log] [blame]
tomab0af292014-09-19 13:04:54 -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>
9 <artifactId>onos-core</artifactId>
10 <version>1.0.0-SNAPSHOT</version>
11 <relativePath>../pom.xml</relativePath>
12 </parent>
13
14 <artifactId>onos-core-store</artifactId>
15 <packaging>bundle</packaging>
16
17 <description>ONOS distributed store subsystems</description>
18
19 <dependencies>
20 <dependency>
21 <groupId>org.onlab.onos</groupId>
22 <artifactId>onos-api</artifactId>
23 </dependency>
24 <dependency>
25 <groupId>org.apache.felix</groupId>
26 <artifactId>org.apache.felix.scr.annotations</artifactId>
27 </dependency>
Yuta HIGUCHI24a086b2014-09-21 23:28:41 -070028 <dependency>
29 <groupId>com.hazelcast</groupId>
30 <artifactId>hazelcast</artifactId>
31 </dependency>
32 <dependency>
33 <groupId>de.javakaffee</groupId>
34 <artifactId>kryo-serializers</artifactId>
35 </dependency>
tomab0af292014-09-19 13:04:54 -070036 </dependencies>
37
38 <build>
39 <plugins>
40 <plugin>
41 <groupId>org.apache.felix</groupId>
42 <artifactId>maven-scr-plugin</artifactId>
43 </plugin>
44 </plugins>
45 </build>
46
47</project>