blob: a8ca49ec97a1dfdef413c0066ea52f2102c84912 [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'Connora09fe5b2017-08-03 21:12:30 -07003 ~ Copyright 2015-present Open Networking Foundation
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>
Yuta HIGUCHI6ee6b8c2017-05-09 14:44:30 -070024 <artifactId>onos-protocols-openflow</artifactId>
Ray Milkeyd1d1fe22017-09-15 11:52:30 -070025 <version>1.11.2-SNAPSHOT</version>
tom7ef8ff92014-09-17 13:08:06 -070026 </parent>
27
Yuta HIGUCHI6ee6b8c2017-05-09 14:44:30 -070028 <artifactId>onos-protocols-openflow-api</artifactId>
tom7ef8ff92014-09-17 13:08:06 -070029 <packaging>bundle</packaging>
30
31 <description>ONOS OpenFlow controller subsystem API</description>
32
33 <dependencies>
34 <dependency>
Yuta HIGUCHI7dbbabf2014-10-08 14:22:07 -070035 <!-- FIXME once experimenter gets merged to upstream -->
Brian O'Connor932d9412014-12-03 17:20:11 -080036 <groupId>org.onosproject</groupId>
37 <artifactId>openflowj</artifactId>
tom7ef8ff92014-09-17 13:08:06 -070038 </dependency>
Yuta HIGUCHI6ee6b8c2017-05-09 14:44:30 -070039
alshabibb452fd72015-04-22 20:46:20 -070040 <dependency>
41 <groupId>org.onosproject</groupId>
42 <artifactId>onos-api</artifactId>
43 </dependency>
Ray Milkeyd931a9b2016-03-02 17:01:30 -080044 <dependency>
45 <groupId>org.onosproject</groupId>
46 <artifactId>onos-api</artifactId>
47 <scope>test</scope>
48 <classifier>tests</classifier>
Ray Milkeyd931a9b2016-03-02 17:01:30 -080049 </dependency>
tom7ef8ff92014-09-17 13:08:06 -070050 </dependencies>
51
52 <build>
53 <plugins>
54 <plugin>
tom7ef8ff92014-09-17 13:08:06 -070055 <groupId>org.apache.felix</groupId>
56 <artifactId>maven-bundle-plugin</artifactId>
tom7ef8ff92014-09-17 13:08:06 -070057 </plugin>
58 </plugins>
59 </build>
60
61</project>