blob: e5078b9d727933201b00519149a5a78754d90f8c [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'Connor7f2e9bf2014-12-04 23:35:13 -080025 <version>1.1.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>
35 <module>trivial</module>
36 <module>dist</module>
Yuta HIGUCHIe76a24d2014-09-27 00:48:34 -070037 <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>
49 <version>${project.version}</version>
50 <classifier>tests</classifier>
51 <scope>test</scope>
52 </dependency>
53
54 <dependency>
Thomas Vachuska0a608ac2014-10-16 11:15:59 -070055 <groupId>org.apache.felix</groupId>
56 <artifactId>org.apache.felix.scr.annotations</artifactId>
Yuta HIGUCHI24a086b2014-09-21 23:28:41 -070057 </dependency>
tomab0af292014-09-19 13:04:54 -070058 </dependencies>
59
60 <build>
61 <plugins>
62 <plugin>
63 <groupId>org.apache.felix</groupId>
Thomas Vachuska0a608ac2014-10-16 11:15:59 -070064 <artifactId>maven-scr-plugin</artifactId>
tomab0af292014-09-19 13:04:54 -070065 </plugin>
66 </plugins>
67 </build>
68
69</project>