blob: f6a157250f798bc0f03343c90a02a56012557f1b [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<!--
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 -->
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>
Brian O'Connor266ac662015-02-28 23:14:38 -080025 <version>1.1.0-SNAPSHOT</version>
tom0eb04ca2014-08-25 14:34:51 -070026 <relativePath>../pom.xml</relativePath>
27 </parent>
28
29 <artifactId>onos-api</artifactId>
30 <packaging>bundle</packaging>
31
32 <description>ONOS network control API</description>
33
tomde8d9682014-08-27 01:11:43 -070034 <dependencies>
35 <dependency>
Yuta HIGUCHIb87ef952014-10-28 23:34:23 -070036 <groupId>joda-time</groupId>
37 <artifactId>joda-time</artifactId>
38 </dependency>
Sho SHIMIZU0e51fe52014-11-05 12:04:23 -080039 <dependency>
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080040 <groupId>commons-configuration</groupId>
41 <artifactId>commons-configuration</artifactId>
42 </dependency>
43 <dependency>
44 <groupId>commons-collections</groupId>
45 <artifactId>commons-collections</artifactId>
46 <version>3.2.1</version>
47 </dependency>
48 <dependency>
Yuta HIGUCHI1773d0a2014-12-17 10:38:03 -080049 <groupId>com.google.guava</groupId>
50 <artifactId>guava-testlib</artifactId>
51 <scope>test</scope>
52 </dependency>
53 <dependency>
Sho SHIMIZU0e51fe52014-11-05 12:04:23 -080054 <groupId>org.easymock</groupId>
55 <artifactId>easymock</artifactId>
Yuta HIGUCHI1773d0a2014-12-17 10:38:03 -080056 <scope>test</scope>
Sho SHIMIZU0e51fe52014-11-05 12:04:23 -080057 </dependency>
Thomas Vachuska3553b302015-03-07 14:49:43 -080058 <dependency>
59 <groupId>org.onosproject</groupId>
60 <artifactId>onlab-osgi</artifactId>
61 </dependency>
tomde8d9682014-08-27 01:11:43 -070062 </dependencies>
63
tom0eb04ca2014-08-25 14:34:51 -070064</project>