blob: cd83218ca7bfe98133d63a8d4edf25a2c8a8138d [file] [log] [blame]
Aaron Kruglikov9f95f992017-06-23 14:15:25 +09001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2017-present 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 -->
17<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
18 <modelVersion>4.0.0</modelVersion>
19 <parent>
20 <artifactId>onos-incubator-protobuf</artifactId>
21 <groupId>org.onosproject</groupId>
22 <version>1.11.0-SNAPSHOT</version>
23 <relativePath>../pom.xml</relativePath>
24 </parent>
25
26 <artifactId>onos-incubator-protobuf-services</artifactId>
27 <packaging>pom</packaging>
28
29 <modules>
30 <module>nb</module>
31 </modules>
32
33 <dependencies>
34 <dependency>
35 <groupId>org.onosproject</groupId>
36 <artifactId>onos-incubator-protobuf-models</artifactId>
37 <version>1.11.0-SNAPSHOT</version>
38 </dependency>
39
40 <dependency>
41 <groupId>org.onosproject</groupId>
42 <artifactId>onos-incubator-api</artifactId>
43 <version>1.11.0-SNAPSHOT</version>
44 </dependency>
45
46 <dependency>
47 <groupId>org.onosproject</groupId>
48 <artifactId>onlab-osgi</artifactId>
49 <version>${project.version}</version>
50 </dependency>
51
52 <dependency>
53 <groupId>org.osgi</groupId>
54 <artifactId>org.osgi.core</artifactId>
55 </dependency>
56
57 <dependency>
58 <groupId>org.osgi</groupId>
59 <artifactId>org.osgi.compendium</artifactId>
60 </dependency>
61
62 <dependency>
63 <groupId>junit</groupId>
64 <artifactId>junit</artifactId>
65 <scope>test</scope>
66 </dependency>
67
68 <dependency>
69 <groupId>org.onosproject</groupId>
70 <artifactId>onlab-junit</artifactId>
71 <version>${project.version}</version>
72 <scope>test</scope>
73 </dependency>
74
75 </dependencies>
76
77 <description>ONOS ProtoBuf service models and implementations</description>
78 <url>http://onosproject.org</url>
79
80</project>