blob: c1cd8f6252a6e49eb5fd808abe255a933551e4d7 [file] [log] [blame]
tom7ef8ff92014-09-17 13:08:06 -07001<?xml version="1.0" encoding="UTF-8"?>
Thomas Vachuska781d18b2014-10-27 10:31:25 -07002<!--
Brian O'Connor5ab426f2016-04-09 01:19:45 -07003 ~ Copyright 2015-present Open Networking Laboratory
Thomas Vachuska781d18b2014-10-27 10:31:25 -07004 ~
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07005 ~ 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
Thomas Vachuska781d18b2014-10-27 10:31:25 -07008 ~
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07009 ~ 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.
Thomas Vachuska781d18b2014-10-27 10:31:25 -070016 -->
tom7ef8ff92014-09-17 13:08:06 -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>
tom7ef8ff92014-09-17 13:08:06 -070024 <artifactId>onos-of</artifactId>
Brian O'Connor955c3162016-03-10 15:27:19 -080025 <version>1.6.0-SNAPSHOT</version>
tom7ef8ff92014-09-17 13:08:06 -070026 <relativePath>../pom.xml</relativePath>
27 </parent>
28
29 <artifactId>onos-of-api</artifactId>
30 <packaging>bundle</packaging>
31
32 <description>ONOS OpenFlow controller subsystem API</description>
33
34 <dependencies>
35 <dependency>
Yuta HIGUCHI7dbbabf2014-10-08 14:22:07 -070036 <!-- FIXME once experimenter gets merged to upstream -->
Brian O'Connor932d9412014-12-03 17:20:11 -080037 <groupId>org.onosproject</groupId>
38 <artifactId>openflowj</artifactId>
tom7ef8ff92014-09-17 13:08:06 -070039 </dependency>
40 <dependency>
41 <groupId>io.netty</groupId>
42 <artifactId>netty</artifactId>
tom7ef8ff92014-09-17 13:08:06 -070043 </dependency>
alshabibb452fd72015-04-22 20:46:20 -070044 <dependency>
45 <groupId>org.onosproject</groupId>
46 <artifactId>onos-api</artifactId>
47 </dependency>
Ray Milkeyd931a9b2016-03-02 17:01:30 -080048 <dependency>
49 <groupId>org.onosproject</groupId>
50 <artifactId>onos-api</artifactId>
51 <scope>test</scope>
52 <classifier>tests</classifier>
53 <version>${project.version}</version>
54 </dependency>
tom7ef8ff92014-09-17 13:08:06 -070055 </dependencies>
56
57 <build>
58 <plugins>
59 <plugin>
tom7ef8ff92014-09-17 13:08:06 -070060 <groupId>org.apache.felix</groupId>
61 <artifactId>maven-bundle-plugin</artifactId>
tom7ef8ff92014-09-17 13:08:06 -070062 </plugin>
63 </plugins>
64 </build>
65
66</project>