blob: dcde857290aa22425c25c7ecf19e2e63e6359d96 [file] [log] [blame]
tom0eb04ca2014-08-25 14:34:51 -07001<?xml version="1.0" encoding="UTF-8"?>
Thomas Vachuska781d18b2014-10-27 10:31:25 -07002<!--
3 ~ Licensed to the Apache Software Foundation (ASF) under one
4 ~ or more contributor license agreements. See the NOTICE file
5 ~ distributed with this work for additional information
6 ~ regarding copyright ownership. The ASF licenses this file
7 ~ to you under the Apache License, Version 2.0 (the
8 ~ "License"); you may not use this file except in compliance
9 ~ with the License. You may obtain a copy of the License at
10 ~
11 ~ http://www.apache.org/licenses/LICENSE-2.0
12 ~
13 ~ Unless required by applicable law or agreed to in writing,
14 ~ software distributed under the License is distributed on an
15 ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 ~ KIND, either express or implied. See the License for the
17 ~ specific language governing permissions and limitations
18 ~ under the License.
19 -->
tom0eb04ca2014-08-25 14:34:51 -070020<project xmlns="http://maven.apache.org/POM/4.0.0"
21 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
23 <modelVersion>4.0.0</modelVersion>
24
25 <parent>
26 <groupId>org.onlab.onos</groupId>
27 <artifactId>onos-providers</artifactId>
28 <version>1.0.0-SNAPSHOT</version>
29 <relativePath>../pom.xml</relativePath>
30 </parent>
31
32 <artifactId>onos-of-providers</artifactId>
33 <packaging>pom</packaging>
34
35 <description>ONOS OpenFlow protocol adapters</description>
36
37 <modules>
tomb5a46e62014-08-26 14:20:00 -070038 <module>device</module>
tome06f8552014-08-26 16:58:42 -070039 <module>link</module>
40 <module>host</module>
alshabibae857582014-09-12 23:53:10 -070041 <module>packet</module>
alshabib57044ba2014-09-16 15:58:01 -070042 <module>flow</module>
tom0eb04ca2014-08-25 14:34:51 -070043 </modules>
44
45 <dependencies>
46 <dependency>
47 <groupId>org.onlab.onos</groupId>
tom0eb04ca2014-08-25 14:34:51 -070048 <artifactId>onos-of-api</artifactId>
49 </dependency>
tom61359e92014-09-16 15:50:27 -070050 <dependency>
51 <groupId>org.onlab.onos</groupId>
52 <artifactId>onos-of-api</artifactId>
53 <classifier>tests</classifier>
54 <scope>test</scope>
55 </dependency>
56
57 <dependency>
58 <groupId>org.onlab.onos</groupId>
59 <artifactId>onos-api</artifactId>
60 <classifier>tests</classifier>
61 <scope>test</scope>
62 </dependency>
tom0eb04ca2014-08-25 14:34:51 -070063 </dependencies>
64
65</project>