blob: fd03891257fdbba419235673d102a11c548dd874 [file] [log] [blame]
tom0eb04ca2014-08-25 14:34:51 -07001<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5 <modelVersion>4.0.0</modelVersion>
6
7 <parent>
8 <groupId>org.onlab.onos</groupId>
9 <artifactId>onos-providers</artifactId>
10 <version>1.0.0-SNAPSHOT</version>
11 <relativePath>../pom.xml</relativePath>
12 </parent>
13
14 <artifactId>onos-of-providers</artifactId>
15 <packaging>pom</packaging>
16
17 <description>ONOS OpenFlow protocol adapters</description>
18
19 <modules>
tomb5a46e62014-08-26 14:20:00 -070020 <module>device</module>
tome06f8552014-08-26 16:58:42 -070021 <module>link</module>
22 <module>host</module>
alshabibae857582014-09-12 23:53:10 -070023 <module>packet</module>
tom0eb04ca2014-08-25 14:34:51 -070024 </modules>
25
26 <dependencies>
27 <dependency>
28 <groupId>org.onlab.onos</groupId>
tom0eb04ca2014-08-25 14:34:51 -070029 <artifactId>onos-of-api</artifactId>
30 </dependency>
tom61359e92014-09-16 15:50:27 -070031 <dependency>
32 <groupId>org.onlab.onos</groupId>
33 <artifactId>onos-of-api</artifactId>
34 <classifier>tests</classifier>
35 <scope>test</scope>
36 </dependency>
37
38 <dependency>
39 <groupId>org.onlab.onos</groupId>
40 <artifactId>onos-api</artifactId>
41 <classifier>tests</classifier>
42 <scope>test</scope>
43 </dependency>
tom0eb04ca2014-08-25 14:34:51 -070044 </dependencies>
45
46</project>