blob: 63e712672550cc0227605453b2fb799d5a01a879 [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'Connora09fe5b2017-08-03 21:12:30 -07003 ~ Copyright 2014-present Open Networking Foundation
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>
ONOS Jenkins Userd06da9e2017-12-11 20:41:44 +000025 <version>1.13.0-b3</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>
Yuta HIGUCHI0c47d532017-08-18 23:16:35 -070037 <version>2.9.3</version>
Yuta HIGUCHIb87ef952014-10-28 23:34:23 -070038 </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>
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080046 </dependency>
47 <dependency>
Yuta HIGUCHI1773d0a2014-12-17 10:38:03 -080048 <groupId>com.google.guava</groupId>
49 <artifactId>guava-testlib</artifactId>
50 <scope>test</scope>
51 </dependency>
52 <dependency>
Sho SHIMIZU0e51fe52014-11-05 12:04:23 -080053 <groupId>org.easymock</groupId>
54 <artifactId>easymock</artifactId>
Yuta HIGUCHI1773d0a2014-12-17 10:38:03 -080055 <scope>test</scope>
Sho SHIMIZU0e51fe52014-11-05 12:04:23 -080056 </dependency>
Thomas Vachuska3553b302015-03-07 14:49:43 -080057 <dependency>
58 <groupId>org.onosproject</groupId>
59 <artifactId>onlab-osgi</artifactId>
60 </dependency>
Jonathan Hart9bb32ab2015-05-05 18:17:31 -070061 <dependency>
62 <groupId>org.onosproject</groupId>
63 <artifactId>onlab-rest</artifactId>
64 <version>${project.version}</version>
65 </dependency>
tomde8d9682014-08-27 01:11:43 -070066 </dependencies>
67
tom0eb04ca2014-08-25 14:34:51 -070068</project>