blob: 518acd7d022beaa2bfae6726802b4b6edcca696c [file] [log] [blame]
tomab0af292014-09-19 13:04:54 -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 -->
Thomas Vachuska0a608ac2014-10-16 11:15:59 -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">
tomab0af292014-09-19 13:04:54 -070020 <modelVersion>4.0.0</modelVersion>
21
22 <parent>
Brian O'Connorabafb502014-12-02 22:26:20 -080023 <groupId>org.onosproject</groupId>
tomab0af292014-09-19 13:04:54 -070024 <artifactId>onos-core</artifactId>
Brian O'Connor880dc20d2015-12-16 22:53:14 -080025 <version>1.5.0-SNAPSHOT</version>
tomab0af292014-09-19 13:04:54 -070026 <relativePath>../pom.xml</relativePath>
27 </parent>
28
29 <artifactId>onos-core-store</artifactId>
Yuta HIGUCHIe76a24d2014-09-27 00:48:34 -070030 <packaging>pom</packaging>
tomab0af292014-09-19 13:04:54 -070031
Yuta HIGUCHIe76a24d2014-09-27 00:48:34 -070032 <description>ONOS Core Store subsystem</description>
33
34 <modules>
Madan Jampani3289fbf2016-01-13 14:14:27 -080035 <module>primitives</module>
Yuta HIGUCHIe76a24d2014-09-27 00:48:34 -070036 <module>dist</module>
Aaron Kruglikov92511f22015-10-12 14:39:04 -070037 <module>persistence</module>
Madan Jampani3289fbf2016-01-13 14:14:27 -080038 <module>serializers</module>
Thomas Vachuska0a608ac2014-10-16 11:15:59 -070039 </modules>
tomab0af292014-09-19 13:04:54 -070040
41 <dependencies>
42 <dependency>
Brian O'Connorabafb502014-12-02 22:26:20 -080043 <groupId>org.onosproject</groupId>
Thomas Vachuska0a608ac2014-10-16 11:15:59 -070044 <artifactId>onos-api</artifactId>
Yuta HIGUCHIe76a24d2014-09-27 00:48:34 -070045 </dependency>
Thomas Vachuska0a608ac2014-10-16 11:15:59 -070046
Yuta HIGUCHIe76a24d2014-09-27 00:48:34 -070047 <dependency>
Thomas Vachuska02aeb032015-01-06 22:36:30 -080048 <groupId>org.onosproject</groupId>
49 <artifactId>onos-core-common</artifactId>
50 <version>${project.version}</version>
51 <classifier>tests</classifier>
52 <scope>test</scope>
53 </dependency>
tomab0af292014-09-19 13:04:54 -070054 </dependencies>
55
tomab0af292014-09-19 13:04:54 -070056</project>