blob: a8323a1515ebd8a7eff41efee9fac3186f5c9b32 [file] [log] [blame]
tom7ef8ff92014-09-17 13:08:06 -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</artifactId>
10 <version>1.0.0-SNAPSHOT</version>
11 <relativePath>../pom.xml</relativePath>
12 </parent>
13
14 <artifactId>onos-of</artifactId>
15 <packaging>pom</packaging>
16
17 <description>ONOS OpenFlow Protocol subsystem</description>
18
19 <modules>
20 <module>api</module>
21 <module>ctl</module>
22 <module>drivers</module>
23 </modules>
24
25 <dependencies>
26 <dependency>
27 <groupId>org.onlab.onos</groupId>
28 <artifactId>onlab-misc</artifactId>
29 </dependency>
30 </dependencies>
31
32 <build>
33 <plugins>
34 <plugin>
35 <groupId>org.apache.felix</groupId>
36 <artifactId>maven-bundle-plugin</artifactId>
37 </plugin>
38 </plugins>
39 </build>
40
41</project>