blob: 8a11f348f9a9b0e69a87a4fb4a8d4801eab42bc3 [file] [log] [blame]
tom0eb04ca2014-08-25 14:34:51 -07001<?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>
tom0872a172014-09-23 11:24:26 -070026 <groupId>org.onlab.onos</groupId>
27 <artifactId>onlab-osgi</artifactId>
28 </dependency>
tom32085cf2014-10-16 00:04:33 -070029
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
tom0872a172014-09-23 11:24:26 -070039 <dependency>
tom0eb04ca2014-08-25 14:34:51 -070040 <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>