blob: df550800486961fa87172e81de9f4bfd949f2d2b [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 Milkeydc48fb22017-09-26 14:42:24 -070022 <version>1.12.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>
Aaron Kruglikov9f95f992017-06-23 14:15:25 +090034
35 <dependency>
36 <groupId>org.onosproject</groupId>
37 <artifactId>onlab-osgi</artifactId>
38 <version>${project.version}</version>
39 </dependency>
40
41 <dependency>
42 <groupId>org.osgi</groupId>
43 <artifactId>org.osgi.core</artifactId>
44 </dependency>
45
46 <dependency>
47 <groupId>org.osgi</groupId>
48 <artifactId>org.osgi.compendium</artifactId>
49 </dependency>
50
51 <dependency>
52 <groupId>junit</groupId>
53 <artifactId>junit</artifactId>
54 <scope>test</scope>
55 </dependency>
56
57 <dependency>
58 <groupId>org.onosproject</groupId>
59 <artifactId>onlab-junit</artifactId>
60 <version>${project.version}</version>
61 <scope>test</scope>
62 </dependency>
63
64 </dependencies>
65
Aaron Kruglikov9f95f992017-06-23 14:15:25 +090066</project>