blob: 2a9e92242c65d2640ad7ae1a9b3ed57cdf4275c2 [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<!--
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07003 ~ Copyright 2014 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'Connor6ea48a22015-03-17 20:07:20 -070025 <version>1.2.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>
tom0872a172014-09-23 11:24:26 -070042 <artifactId>onlab-osgi</artifactId>
43 </dependency>
Ray Milkey3078fc02015-05-06 16:14:14 -070044 <dependency>
45 <groupId>org.onosproject</groupId>
46 <artifactId>onos-core-common</artifactId>
47 </dependency>
tom32085cf2014-10-16 00:04:33 -070048
49 <dependency>
50 <groupId>com.fasterxml.jackson.core</groupId>
51 <artifactId>jackson-databind</artifactId>
52 </dependency>
53 <dependency>
54 <groupId>com.fasterxml.jackson.core</groupId>
55 <artifactId>jackson-annotations</artifactId>
56 </dependency>
57
tom0872a172014-09-23 11:24:26 -070058 <dependency>
tom0eb04ca2014-08-25 14:34:51 -070059 <groupId>org.osgi</groupId>
60 <artifactId>org.osgi.core</artifactId>
61 </dependency>
62 <dependency>
63 <groupId>org.apache.karaf.shell</groupId>
64 <artifactId>org.apache.karaf.shell.console</artifactId>
65 </dependency>
Ray Milkey02479862015-02-17 17:02:19 -080066 <dependency>
67 <groupId>org.apache.felix</groupId>
68 <artifactId>org.apache.felix.scr.annotations</artifactId>
69 </dependency>
tom0eb04ca2014-08-25 14:34:51 -070070 </dependencies>
71
72 <build>
73 <plugins>
74 <plugin>
75 <groupId>org.apache.felix</groupId>
76 <artifactId>maven-bundle-plugin</artifactId>
77 </plugin>
Ray Milkey02479862015-02-17 17:02:19 -080078
79 <plugin>
80 <groupId>org.apache.felix</groupId>
81 <artifactId>maven-scr-plugin</artifactId>
82 </plugin>
tom0eb04ca2014-08-25 14:34:51 -070083 </plugins>
84 </build>
85
86</project>