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> |
tom | e2dc27a | 2014-09-09 12:41:21 -0700 | [diff] [blame] | 9 | <artifactId>onos-core</artifactId> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 10 | <version>1.0.0-SNAPSHOT</version> |
| 11 | <relativePath>../pom.xml</relativePath> |
| 12 | </parent> |
| 13 | |
tom | e2dc27a | 2014-09-09 12:41:21 -0700 | [diff] [blame] | 14 | <artifactId>onos-core-trivial</artifactId> |
| 15 | <packaging>bundle</packaging> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 16 | |
tom | e2dc27a | 2014-09-09 12:41:21 -0700 | [diff] [blame] | 17 | <description>ONOS network control trivial implementations of core subsystems</description> |
tom | b1260e4 | 2014-08-26 18:39:57 -0700 | [diff] [blame] | 18 | |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 19 | <dependencies> |
| 20 | <dependency> |
| 21 | <groupId>org.onlab.onos</groupId> |
| 22 | <artifactId>onos-api</artifactId> |
| 23 | </dependency> |
| 24 | <dependency> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 25 | <groupId>org.apache.felix</groupId> |
| 26 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 27 | </dependency> |
| 28 | </dependencies> |
| 29 | |
| 30 | <build> |
| 31 | <plugins> |
| 32 | <plugin> |
| 33 | <groupId>org.apache.felix</groupId> |
| 34 | <artifactId>maven-scr-plugin</artifactId> |
| 35 | </plugin> |
| 36 | </plugins> |
| 37 | </build> |
| 38 | |
| 39 | </project> |