blob: 4bd7619e8cd5e7780e5878fd8b9e148ea5c7c830 [file] [log] [blame]
tom7ef8ff92014-09-17 13:08:06 -07001<project xmlns="http://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5
6 <parent>
7 <groupId>org.onlab.onos</groupId>
8 <artifactId>onos-of</artifactId>
9 <version>1.0.0-SNAPSHOT</version>
10 <relativePath>../pom.xml</relativePath>
11 </parent>
12
13 <artifactId>onos-of-ctl</artifactId>
14 <packaging>bundle</packaging>
15
16 <description>ONOS OpenFlow controller subsystem API</description>
17
tom7ef8ff92014-09-17 13:08:06 -070018 <dependencies>
19 <dependency>
20 <groupId>org.onlab.onos</groupId>
21 <artifactId>onos-of-api</artifactId>
22 </dependency>
tom73d6d1e2014-09-17 20:08:01 -070023 <dependency>
24 <groupId>io.netty</groupId>
25 <artifactId>netty</artifactId>
26 </dependency>
tom7ef8ff92014-09-17 13:08:06 -070027 <dependency>
28 <groupId>org.apache.felix</groupId>
29 <artifactId>org.apache.felix.scr.annotations</artifactId>
tom7ef8ff92014-09-17 13:08:06 -070030 </dependency>
31 </dependencies>
32
tom7ef8ff92014-09-17 13:08:06 -070033 <build>
34 <plugins>
35 <plugin>
36 <groupId>org.apache.felix</groupId>
37 <artifactId>maven-scr-plugin</artifactId>
38 </plugin>
tom7ef8ff92014-09-17 13:08:06 -070039 </plugins>
40 </build>
41
42</project>