tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 1 | <?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> |
tom | b5a46e6 | 2014-08-26 14:20:00 -0700 | [diff] [blame] | 20 | <module>device</module> |
tom | e06f855 | 2014-08-26 16:58:42 -0700 | [diff] [blame] | 21 | <module>link</module> |
| 22 | <module>host</module> |
alshabib | ae85758 | 2014-09-12 23:53:10 -0700 | [diff] [blame] | 23 | <module>packet</module> |
alshabib | 57044ba | 2014-09-16 15:58:01 -0700 | [diff] [blame] | 24 | <module>flow</module> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 25 | </modules> |
| 26 | |
| 27 | <dependencies> |
| 28 | <dependency> |
| 29 | <groupId>org.onlab.onos</groupId> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 30 | <artifactId>onos-of-api</artifactId> |
| 31 | </dependency> |
tom | 61359e9 | 2014-09-16 15:50:27 -0700 | [diff] [blame] | 32 | <dependency> |
| 33 | <groupId>org.onlab.onos</groupId> |
| 34 | <artifactId>onos-of-api</artifactId> |
| 35 | <classifier>tests</classifier> |
| 36 | <scope>test</scope> |
| 37 | </dependency> |
| 38 | |
| 39 | <dependency> |
| 40 | <groupId>org.onlab.onos</groupId> |
| 41 | <artifactId>onos-api</artifactId> |
| 42 | <classifier>tests</classifier> |
| 43 | <scope>test</scope> |
| 44 | </dependency> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 45 | </dependencies> |
| 46 | |
| 47 | </project> |