tom | 7ef8ff9 | 2014-09-17 13:08:06 -0700 | [diff] [blame] | 1 | <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 | |
tom | 7ef8ff9 | 2014-09-17 13:08:06 -0700 | [diff] [blame] | 18 | <dependencies> |
| 19 | <dependency> |
| 20 | <groupId>org.onlab.onos</groupId> |
| 21 | <artifactId>onos-of-api</artifactId> |
| 22 | </dependency> |
tom | 73d6d1e | 2014-09-17 20:08:01 -0700 | [diff] [blame] | 23 | <dependency> |
| 24 | <groupId>io.netty</groupId> |
| 25 | <artifactId>netty</artifactId> |
| 26 | </dependency> |
tom | 7ef8ff9 | 2014-09-17 13:08:06 -0700 | [diff] [blame] | 27 | <dependency> |
| 28 | <groupId>org.apache.felix</groupId> |
| 29 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
tom | 7ef8ff9 | 2014-09-17 13:08:06 -0700 | [diff] [blame] | 30 | </dependency> |
| 31 | </dependencies> |
| 32 | |
tom | 7ef8ff9 | 2014-09-17 13:08:06 -0700 | [diff] [blame] | 33 | <build> |
| 34 | <plugins> |
| 35 | <plugin> |
| 36 | <groupId>org.apache.felix</groupId> |
| 37 | <artifactId>maven-scr-plugin</artifactId> |
| 38 | </plugin> |
tom | 7ef8ff9 | 2014-09-17 13:08:06 -0700 | [diff] [blame] | 39 | </plugins> |
| 40 | </build> |
| 41 | |
| 42 | </project> |