blob: cc1d9dd2e302c8c3e58afbc67dcb0129a8b40e0e [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>
29 <dependency>
tom0eb04ca2014-08-25 14:34:51 -070030 <groupId>org.osgi</groupId>
31 <artifactId>org.osgi.core</artifactId>
32 </dependency>
33 <dependency>
34 <groupId>org.apache.karaf.shell</groupId>
35 <artifactId>org.apache.karaf.shell.console</artifactId>
36 </dependency>
37 </dependencies>
38
39 <build>
40 <plugins>
41 <plugin>
42 <groupId>org.apache.felix</groupId>
43 <artifactId>maven-bundle-plugin</artifactId>
44 </plugin>
45 </plugins>
46 </build>
47
48</project>