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> |
tom | 0872a17 | 2014-09-23 11:24:26 -0700 | [diff] [blame] | 26 | <groupId>org.onlab.onos</groupId> |
| 27 | <artifactId>onlab-osgi</artifactId> |
| 28 | </dependency> |
tom | 32085cf | 2014-10-16 00:04:33 -0700 | [diff] [blame] | 29 | |
| 30 | <dependency> |
| 31 | <groupId>com.fasterxml.jackson.core</groupId> |
| 32 | <artifactId>jackson-databind</artifactId> |
| 33 | </dependency> |
| 34 | <dependency> |
| 35 | <groupId>com.fasterxml.jackson.core</groupId> |
| 36 | <artifactId>jackson-annotations</artifactId> |
| 37 | </dependency> |
| 38 | |
tom | 0872a17 | 2014-09-23 11:24:26 -0700 | [diff] [blame] | 39 | <dependency> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 40 | <groupId>org.osgi</groupId> |
| 41 | <artifactId>org.osgi.core</artifactId> |
| 42 | </dependency> |
| 43 | <dependency> |
| 44 | <groupId>org.apache.karaf.shell</groupId> |
| 45 | <artifactId>org.apache.karaf.shell.console</artifactId> |
| 46 | </dependency> |
| 47 | </dependencies> |
| 48 | |
| 49 | <build> |
| 50 | <plugins> |
| 51 | <plugin> |
| 52 | <groupId>org.apache.felix</groupId> |
| 53 | <artifactId>maven-bundle-plugin</artifactId> |
| 54 | </plugin> |
| 55 | </plugins> |
| 56 | </build> |
| 57 | |
| 58 | </project> |