blob: 19c2b879da8f8ead1409509996b90f45fd3e0606 [file] [log] [blame]
kmcpeakeb172d5f2015-12-10 11:30:43 +00001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connorce2a03d2017-08-03 19:21:03 -07003~ Copyright 2015-present Open Networking Foundation
kmcpeakeb172d5f2015-12-10 11:30:43 +00004~
5~ 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
8~
9~ 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.
16-->
17
18<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19 <modelVersion>4.0.0</modelVersion>
20
21
22 <parent>
23 <groupId>org.onosproject</groupId>
24 <artifactId>onos-app-fm</artifactId>
ONOS Jenkins User2956e1e2018-02-23 17:42:15 +000025 <version>1.10.13-SNAPSHOT</version>
kmcpeakeb172d5f2015-12-10 11:30:43 +000026 </parent>
27
28 <artifactId>onos-app-fm-gui</artifactId>
29 <packaging>bundle</packaging>
30
31 <dependencies>
32 <dependency>
33 <groupId>org.apache.karaf.shell</groupId>
34 <artifactId>org.apache.karaf.shell.console</artifactId>
35 <scope>compile</scope>
36 </dependency>
37
38 <dependency>
39 <groupId>org.onosproject</groupId>
40 <artifactId>onlab-osgi</artifactId>
41 </dependency>
42
43 <dependency>
44 <groupId>org.onosproject</groupId>
45 <artifactId>onlab-junit</artifactId>
46 <scope>test</scope>
47 </dependency>
48
49
50 <dependency>
51 <groupId>org.apache.felix</groupId>
52 <artifactId>org.apache.felix.scr.annotations</artifactId>
53 <scope>provided</scope>
54 </dependency>
55
56 <dependency>
57 <groupId>org.onosproject</groupId>
58 <artifactId>onos-cli</artifactId>
59 <version>${project.version}</version>
60 <type>jar</type>
61 </dependency>
62 </dependencies>
63
64</project>