blob: dd649e74c631ea0fd3cd45a155ea0f84169d88c0 [file] [log] [blame]
Andrea Campanella238d96e2016-01-20 11:52:02 -08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connora09fe5b2017-08-03 21:12:30 -07003 ~ Copyright 2016-present Open Networking Foundation
Andrea Campanella238d96e2016-01-20 11:52:02 -08004 ~
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>
ONOS Jenkins User4bf9e3a2017-12-12 18:46:22 +000024 <version>1.13.0-SNAPSHOT</version>
Andrea Campanella238d96e2016-01-20 11:52:02 -080025 </parent>
26 <modelVersion>4.0.0</modelVersion>
27
28 <description>Default device drivers</description>
Yuta HIGUCHI71ee08f2017-08-28 14:38:27 -070029 <artifactId>onos-drivers-default</artifactId>
Andrea Campanella238d96e2016-01-20 11:52:02 -080030 <packaging>bundle</packaging>
31
32 <properties>
33 <onos.app.name>org.onosproject.drivers</onos.app.name>
Jian Lifd46e1d2016-03-08 09:18:53 -080034 <onos.app.origin>ON.Lab</onos.app.origin>
35 <onos.app.category>Drivers</onos.app.category>
36 <onos.app.title>Default Device Drivers</onos.app.title>
37 <onos.app.url>http://onosproject.org</onos.app.url>
Andrea Campanella238d96e2016-01-20 11:52:02 -080038 </properties>
39 <dependencies>
40 <dependency>
41 <groupId>org.onosproject</groupId>
Yuta HIGUCHI6ee6b8c2017-05-09 14:44:30 -070042 <artifactId>onos-protocols-openflow-api</artifactId>
Andrea Campanella238d96e2016-01-20 11:52:02 -080043 </dependency>
Brian O'Connor01ac79e2016-04-04 14:10:09 -070044 <dependency>
45 <groupId>org.onosproject</groupId>
46 <artifactId>openflowj</artifactId>
47 </dependency>
Andrea Campanella238d96e2016-01-20 11:52:02 -080048 </dependencies>
HIGUCHI Yuta34a3f692016-01-09 21:08:57 -080049 <build>
50 <plugins>
51 <plugin>
52 <groupId>org.apache.felix</groupId>
53 <artifactId>maven-bundle-plugin</artifactId>
54 <extensions>true</extensions>
55 <configuration>
56 <niceManifest>true</niceManifest>
HIGUCHI Yuta34a3f692016-01-09 21:08:57 -080057 </configuration>
58 </plugin>
59 </plugins>
60 </build>
61</project>