blob: 28579c3c44f500d9d6f04c609be054d40307fe57 [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'Connore642f7c2016-05-23 18:33:04 -070025 <version>1.7.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
HIGUCHI Yutaf3ead252016-05-12 18:18:15 -070052 <!-- TODO Remove after decoupling optical -->
53 <dependency>
54 <groupId>org.onosproject</groupId>
55 <artifactId>onos-optical-model</artifactId>
56 <version>${project.version}</version>
57 </dependency>
58
tom32085cf2014-10-16 00:04:33 -070059 <dependency>
60 <groupId>com.fasterxml.jackson.core</groupId>
61 <artifactId>jackson-databind</artifactId>
62 </dependency>
63 <dependency>
64 <groupId>com.fasterxml.jackson.core</groupId>
65 <artifactId>jackson-annotations</artifactId>
66 </dependency>
67
tom0872a172014-09-23 11:24:26 -070068 <dependency>
tom0eb04ca2014-08-25 14:34:51 -070069 <groupId>org.osgi</groupId>
70 <artifactId>org.osgi.core</artifactId>
71 </dependency>
72 <dependency>
73 <groupId>org.apache.karaf.shell</groupId>
74 <artifactId>org.apache.karaf.shell.console</artifactId>
75 </dependency>
Ray Milkey02479862015-02-17 17:02:19 -080076 <dependency>
77 <groupId>org.apache.felix</groupId>
78 <artifactId>org.apache.felix.scr.annotations</artifactId>
79 </dependency>
tom0eb04ca2014-08-25 14:34:51 -070080 </dependencies>
81
82 <build>
83 <plugins>
84 <plugin>
85 <groupId>org.apache.felix</groupId>
86 <artifactId>maven-bundle-plugin</artifactId>
87 </plugin>
Ray Milkey02479862015-02-17 17:02:19 -080088
89 <plugin>
90 <groupId>org.apache.felix</groupId>
91 <artifactId>maven-scr-plugin</artifactId>
92 </plugin>
tom0eb04ca2014-08-25 14:34:51 -070093 </plugins>
94 </build>
95
96</project>