blob: d77b3f5236cff0f652c5faf3ac8f9b77517418ec [file] [log] [blame]
tom0eb04ca2014-08-25 14:34:51 -07001<?xml version="1.0" encoding="UTF-8"?>
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07002<!--
Brian O'Connor5ab426f2016-04-09 01:19:45 -07003 ~ Copyright 2014-present Open Networking Laboratory
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 -->
tom0eb04ca2014-08-25 14:34:51 -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">
20 <modelVersion>4.0.0</modelVersion>
21
22 <parent>
Brian O'Connorabafb502014-12-02 22:26:20 -080023 <groupId>org.onosproject</groupId>
tome2dc27a2014-09-09 12:41:21 -070024 <artifactId>onos-core</artifactId>
Ray Milkey72bcefe2016-12-02 16:22:53 -080025 <version>1.9.0-SNAPSHOT</version>
tom0eb04ca2014-08-25 14:34:51 -070026 </parent>
27
28 <artifactId>onos-api</artifactId>
29 <packaging>bundle</packaging>
30
31 <description>ONOS network control API</description>
32
tomde8d9682014-08-27 01:11:43 -070033 <dependencies>
34 <dependency>
Yuta HIGUCHIb87ef952014-10-28 23:34:23 -070035 <groupId>joda-time</groupId>
36 <artifactId>joda-time</artifactId>
37 </dependency>
Sho SHIMIZU0e51fe52014-11-05 12:04:23 -080038 <dependency>
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080039 <groupId>commons-configuration</groupId>
40 <artifactId>commons-configuration</artifactId>
41 </dependency>
42 <dependency>
43 <groupId>commons-collections</groupId>
44 <artifactId>commons-collections</artifactId>
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080045 </dependency>
46 <dependency>
Yuta HIGUCHI1773d0a2014-12-17 10:38:03 -080047 <groupId>com.google.guava</groupId>
48 <artifactId>guava-testlib</artifactId>
49 <scope>test</scope>
50 </dependency>
51 <dependency>
Sho SHIMIZU0e51fe52014-11-05 12:04:23 -080052 <groupId>org.easymock</groupId>
53 <artifactId>easymock</artifactId>
Yuta HIGUCHI1773d0a2014-12-17 10:38:03 -080054 <scope>test</scope>
Sho SHIMIZU0e51fe52014-11-05 12:04:23 -080055 </dependency>
Thomas Vachuska3553b302015-03-07 14:49:43 -080056 <dependency>
57 <groupId>org.onosproject</groupId>
58 <artifactId>onlab-osgi</artifactId>
59 </dependency>
Jonathan Hart9bb32ab2015-05-05 18:17:31 -070060 <dependency>
61 <groupId>org.onosproject</groupId>
62 <artifactId>onlab-rest</artifactId>
63 <version>${project.version}</version>
64 </dependency>
tomde8d9682014-08-27 01:11:43 -070065 </dependencies>
66
tom0eb04ca2014-08-25 14:34:51 -070067</project>