blob: aeabcd2ae879a5927a7a26ccab7a07e999f62d3b [file] [log] [blame]
Aaron Kruglikov9f95f992017-06-23 14:15:25 +09001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connora09fe5b2017-08-03 21:12:30 -07003 ~ Copyright 2017-present Open Networking Foundation
Aaron Kruglikov9f95f992017-06-23 14:15:25 +09004 ~
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>
Ray Milkey64677e92017-08-01 10:48:08 -070022 <version>1.11.0-SNAPSHOT</version>
Aaron Kruglikov9f95f992017-06-23 14:15:25 +090023 <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>
Ray Milkey64677e92017-08-01 10:48:08 -070037 <version>1.11.0-SNAPSHOT</version>
Aaron Kruglikov9f95f992017-06-23 14:15:25 +090038 </dependency>
39
40 <dependency>
41 <groupId>org.onosproject</groupId>
42 <artifactId>onos-incubator-api</artifactId>
Ray Milkey64677e92017-08-01 10:48:08 -070043 <version>1.11.0-SNAPSHOT</version>
Aaron Kruglikov9f95f992017-06-23 14:15:25 +090044 </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>