blob: d1be580c6aa6a1e27dd4fde776c85f05b075eb45 [file] [log] [blame]
tom0eb04ca2014-08-25 14:34:51 -07001<?xml version="1.0" encoding="UTF-8"?>
Thomas Vachuska7d693f52014-10-21 19:17:57 -07002<!--
Brian O'Connor5ab426f2016-04-09 01:19:45 -07003 ~ Copyright 2014-present Open Networking Laboratory
Thomas Vachuska7d693f52014-10-21 19:17:57 -07004 ~
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07005 ~ Licensed under the Apache License, Version 2.0 (the "License");
6 ~ you may not use this file except in compliance with the License.
7 ~ You may obtain a copy of the License at
Thomas Vachuska7d693f52014-10-21 19:17:57 -07008 ~
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07009 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~
11 ~ Unless required by applicable law or agreed to in writing, software
12 ~ distributed under the License is distributed on an "AS IS" BASIS,
13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ~ See the License for the specific language governing permissions and
15 ~ limitations under the License.
Thomas Vachuska7d693f52014-10-21 19:17:57 -070016 -->
tom0eb04ca2014-08-25 14:34:51 -070017<project xmlns="http://maven.apache.org/POM/4.0.0"
18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
22 <parent>
Brian O'Connorabafb502014-12-02 22:26:20 -080023 <groupId>org.onosproject</groupId>
tom0eb04ca2014-08-25 14:34:51 -070024 <artifactId>onos</artifactId>
Brian O'Connor955c3162016-03-10 15:27:19 -080025 <version>1.6.0-SNAPSHOT</version>
tom0eb04ca2014-08-25 14:34:51 -070026 <relativePath>../pom.xml</relativePath>
27 </parent>
28
29 <artifactId>onos-cli</artifactId>
30 <packaging>bundle</packaging>
31
32 <description>ONOS administrative console command-line extensions
33 </description>
34
35 <dependencies>
36 <dependency>
Brian O'Connorabafb502014-12-02 22:26:20 -080037 <groupId>org.onosproject</groupId>
tom0eb04ca2014-08-25 14:34:51 -070038 <artifactId>onos-api</artifactId>
39 </dependency>
40 <dependency>
Brian O'Connorabafb502014-12-02 22:26:20 -080041 <groupId>org.onosproject</groupId>
Thomas Vachuskabf916ea2015-05-20 18:24:34 -070042 <artifactId>onos-incubator-api</artifactId>
43 </dependency>
44 <dependency>
45 <groupId>org.onosproject</groupId>
tom0872a172014-09-23 11:24:26 -070046 <artifactId>onlab-osgi</artifactId>
47 </dependency>
Ray Milkey3078fc02015-05-06 16:14:14 -070048 <dependency>
49 <groupId>org.onosproject</groupId>
50 <artifactId>onos-core-common</artifactId>
51 </dependency>
tom32085cf2014-10-16 00:04:33 -070052
53 <dependency>
54 <groupId>com.fasterxml.jackson.core</groupId>
55 <artifactId>jackson-databind</artifactId>
56 </dependency>
57 <dependency>
58 <groupId>com.fasterxml.jackson.core</groupId>
59 <artifactId>jackson-annotations</artifactId>
60 </dependency>
61
tom0872a172014-09-23 11:24:26 -070062 <dependency>
tom0eb04ca2014-08-25 14:34:51 -070063 <groupId>org.osgi</groupId>
64 <artifactId>org.osgi.core</artifactId>
65 </dependency>
66 <dependency>
67 <groupId>org.apache.karaf.shell</groupId>
68 <artifactId>org.apache.karaf.shell.console</artifactId>
69 </dependency>
Ray Milkey02479862015-02-17 17:02:19 -080070 <dependency>
71 <groupId>org.apache.felix</groupId>
72 <artifactId>org.apache.felix.scr.annotations</artifactId>
73 </dependency>
tom0eb04ca2014-08-25 14:34:51 -070074 </dependencies>
75
76 <build>
77 <plugins>
78 <plugin>
79 <groupId>org.apache.felix</groupId>
80 <artifactId>maven-bundle-plugin</artifactId>
81 </plugin>
Ray Milkey02479862015-02-17 17:02:19 -080082
83 <plugin>
84 <groupId>org.apache.felix</groupId>
85 <artifactId>maven-scr-plugin</artifactId>
86 </plugin>
tom0eb04ca2014-08-25 14:34:51 -070087 </plugins>
88 </build>
89
90</project>