blob: 9332d05577e38c76be54559fb1da5d8462f2b344 [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<!--
Brian O'Connora09fe5b2017-08-03 21:12:30 -07003 ~ Copyright 2014-present Open Networking Foundation
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07004 ~
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>
Ray Milkeydc48fb22017-09-26 14:42:24 -070025 <version>1.12.0-SNAPSHOT</version>
tomab0af292014-09-19 13:04:54 -070026 </parent>
27
28 <artifactId>onos-core-store</artifactId>
Yuta HIGUCHIe76a24d2014-09-27 00:48:34 -070029 <packaging>pom</packaging>
tomab0af292014-09-19 13:04:54 -070030
Yuta HIGUCHIe76a24d2014-09-27 00:48:34 -070031 <description>ONOS Core Store subsystem</description>
32
33 <modules>
Madan Jampani3289fbf2016-01-13 14:14:27 -080034 <module>primitives</module>
Yuta HIGUCHIe76a24d2014-09-27 00:48:34 -070035 <module>dist</module>
Aaron Kruglikov92511f22015-10-12 14:39:04 -070036 <module>persistence</module>
Madan Jampani3289fbf2016-01-13 14:14:27 -080037 <module>serializers</module>
Thomas Vachuska0a608ac2014-10-16 11:15:59 -070038 </modules>
tomab0af292014-09-19 13:04:54 -070039
40 <dependencies>
41 <dependency>
Brian O'Connorabafb502014-12-02 22:26:20 -080042 <groupId>org.onosproject</groupId>
Thomas Vachuska0a608ac2014-10-16 11:15:59 -070043 <artifactId>onos-api</artifactId>
Yuta HIGUCHIe76a24d2014-09-27 00:48:34 -070044 </dependency>
Thomas Vachuska0a608ac2014-10-16 11:15:59 -070045
Yuta HIGUCHIe76a24d2014-09-27 00:48:34 -070046 <dependency>
Thomas Vachuska02aeb032015-01-06 22:36:30 -080047 <groupId>org.onosproject</groupId>
48 <artifactId>onos-core-common</artifactId>
Thomas Vachuska02aeb032015-01-06 22:36:30 -080049 <classifier>tests</classifier>
50 <scope>test</scope>
51 </dependency>
tomab0af292014-09-19 13:04:54 -070052 </dependencies>
53
tomab0af292014-09-19 13:04:54 -070054</project>