blob: 4e718006ffaaa4b35dfc755efb7a1365df62d185 [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>
Brian O'Connore642f7c2016-05-23 18:33:04 -070025 <version>1.7.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>
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>