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</artifactId> |
| 10 | <version>1.0.0-SNAPSHOT</version> |
| 11 | <relativePath>../pom.xml</relativePath> |
| 12 | </parent> |
| 13 | |
| 14 | <artifactId>onos-cli</artifactId> |
| 15 | <packaging>bundle</packaging> |
| 16 | |
| 17 | <description>ONOS administrative console command-line extensions |
| 18 | </description> |
| 19 | |
| 20 | <dependencies> |
| 21 | <dependency> |
| 22 | <groupId>org.onlab.onos</groupId> |
| 23 | <artifactId>onos-api</artifactId> |
| 24 | </dependency> |
| 25 | <dependency> |
| 26 | <groupId>org.osgi</groupId> |
| 27 | <artifactId>org.osgi.core</artifactId> |
| 28 | </dependency> |
| 29 | <dependency> |
| 30 | <groupId>org.apache.karaf.shell</groupId> |
| 31 | <artifactId>org.apache.karaf.shell.console</artifactId> |
| 32 | </dependency> |
| 33 | </dependencies> |
| 34 | |
| 35 | <build> |
| 36 | <plugins> |
| 37 | <plugin> |
| 38 | <groupId>org.apache.felix</groupId> |
| 39 | <artifactId>maven-bundle-plugin</artifactId> |
| 40 | </plugin> |
| 41 | </plugins> |
| 42 | </build> |
| 43 | |
| 44 | </project> |