blob: c47102a4419663a3d34d6da23388724ed1b5ec79 [file] [log] [blame]
Georgios Katsikas83600982017-05-28 20:41:45 +02001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2017-present Open Networking Foundation
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 -->
17
18<project xmlns="http://maven.apache.org/POM/4.0.0"
19 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
21 <parent>
22 <artifactId>onos-drivers-general</artifactId>
23 <groupId>org.onosproject</groupId>
Ray Milkeybca90492018-04-13 12:47:31 -070024 <version>1.14.0-SNAPSHOT</version>
Georgios Katsikas83600982017-05-28 20:41:45 +020025 </parent>
26 <modelVersion>4.0.0</modelVersion>
27
28 <artifactId>onos-drivers-server</artifactId>
29 <packaging>bundle</packaging>
30
31 <description>ONOS southbound drivers for commodity servers</description>
32
33 <properties>
34 <onos.app.name>org.onosproject.drivers.server</onos.app.name>
35 <onos.app.origin>KTH Royal Institute of Technology &amp; RISE SICS</onos.app.origin>
36 <onos.app.category>Drivers</onos.app.category>
37 <onos.app.title>Server Device Drivers</onos.app.title>
38 <onos.app.url>https://github.com/gkatsikas/onos/tree/metron-driver</onos.app.url>
39 <onos.app.readme>
40 Allows ONOS to manage CPU and network interface cards' (NICs)
41 resources on commodity servers.
42 </onos.app.readme>
43 <onos.app.requires>
44 org.onosproject.restsb
45 </onos.app.requires>
46 </properties>
47
48 <dependencies>
49 <dependency>
50 <groupId>org.onosproject</groupId>
51 <artifactId>onos-restsb-api</artifactId>
52 <version>${project.version}</version>
53 </dependency>
54
55 <dependency>
56 <groupId>javax.ws.rs</groupId>
57 <artifactId>javax.ws.rs-api</artifactId>
58 </dependency>
59
60 <dependency>
61 <groupId>org.glassfish.jersey.containers</groupId>
62 <artifactId>jersey-container-servlet</artifactId>
63 </dependency>
64
65 <dependency>
66 <groupId>com.fasterxml.jackson.core</groupId>
67 <artifactId>jackson-databind</artifactId>
68 </dependency>
69
70 <dependency>
71 <groupId>com.fasterxml.jackson.core</groupId>
72 <artifactId>jackson-annotations</artifactId>
73 </dependency>
74 </dependencies>
75
76</project>