blob: b3312ddd4f22b6f6d9d4f04254234a2f2ab1edda [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'Connorbfc02ec2016-09-16 00:42:37 -070025 <version>1.8.0-SNAPSHOT</version>
tom0eb04ca2014-08-25 14:34:51 -070026 </parent>
27
28 <artifactId>onos-cli</artifactId>
29 <packaging>bundle</packaging>
30
31 <description>ONOS administrative console command-line extensions
32 </description>
33
34 <dependencies>
35 <dependency>
Brian O'Connorabafb502014-12-02 22:26:20 -080036 <groupId>org.onosproject</groupId>
tom0eb04ca2014-08-25 14:34:51 -070037 <artifactId>onos-api</artifactId>
38 </dependency>
39 <dependency>
Brian O'Connorabafb502014-12-02 22:26:20 -080040 <groupId>org.onosproject</groupId>
Thomas Vachuskabf916ea2015-05-20 18:24:34 -070041 <artifactId>onos-incubator-api</artifactId>
42 </dependency>
43 <dependency>
44 <groupId>org.onosproject</groupId>
tom0872a172014-09-23 11:24:26 -070045 <artifactId>onlab-osgi</artifactId>
46 </dependency>
Ray Milkey3078fc02015-05-06 16:14:14 -070047 <dependency>
48 <groupId>org.onosproject</groupId>
49 <artifactId>onos-core-common</artifactId>
50 </dependency>
tom32085cf2014-10-16 00:04:33 -070051
52 <dependency>
53 <groupId>com.fasterxml.jackson.core</groupId>
54 <artifactId>jackson-databind</artifactId>
55 </dependency>
56 <dependency>
57 <groupId>com.fasterxml.jackson.core</groupId>
58 <artifactId>jackson-annotations</artifactId>
59 </dependency>
60
tom0872a172014-09-23 11:24:26 -070061 <dependency>
tom0eb04ca2014-08-25 14:34:51 -070062 <groupId>org.osgi</groupId>
63 <artifactId>org.osgi.core</artifactId>
64 </dependency>
65 <dependency>
66 <groupId>org.apache.karaf.shell</groupId>
67 <artifactId>org.apache.karaf.shell.console</artifactId>
68 </dependency>
Ray Milkey02479862015-02-17 17:02:19 -080069 <dependency>
70 <groupId>org.apache.felix</groupId>
71 <artifactId>org.apache.felix.scr.annotations</artifactId>
72 </dependency>
tom0eb04ca2014-08-25 14:34:51 -070073 </dependencies>
74
75 <build>
76 <plugins>
77 <plugin>
78 <groupId>org.apache.felix</groupId>
79 <artifactId>maven-bundle-plugin</artifactId>
80 </plugin>
Ray Milkey02479862015-02-17 17:02:19 -080081
82 <plugin>
83 <groupId>org.apache.felix</groupId>
84 <artifactId>maven-scr-plugin</artifactId>
85 </plugin>
tom0eb04ca2014-08-25 14:34:51 -070086 </plugins>
87 </build>
88
89</project>