blob: e67f54450a98dcc8176a81a28af70af183c9d728 [file] [log] [blame]
Mohammad Shahid0cf9c0e2017-08-09 15:58:19 +05301<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2017-present Open Networking Foundation
4 ~
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<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/xsd/maven-4.0.0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21 <parent>
22 <groupId>org.onosproject</groupId>
23 <artifactId>onos-apps</artifactId>
Ray Milkey312d9872018-08-20 16:09:54 -070024 <version>1.15.0-SNAPSHOT</version>
Mohammad Shahid0cf9c0e2017-08-09 15:58:19 +053025 </parent>
26
Yuta HIGUCHI78472272018-05-03 17:08:16 -070027 <artifactId>onos-apps-gluon</artifactId>
Mohammad Shahid0cf9c0e2017-08-09 15:58:19 +053028 <packaging>bundle</packaging>
29
30 <description>ONOS GLUON application</description>
31 <url>http://onosproject.org</url>
32
33 <properties>
34 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Yuta HIGUCHI78472272018-05-03 17:08:16 -070035 <onos.app.name>onos-apps-gluon</onos.app.name>
Mohammad Shahid0cf9c0e2017-08-09 15:58:19 +053036 <onos.app.origin>Huawei Technology India Pvt Ltd</onos.app.origin>
37 <onos.app.title>Gluon App</onos.app.title>
38 <onos.app.url>http://onosproject.org</onos.app.url>
39 </properties>
40 <dependencies>
41 <dependency>
42 <groupId>org.onosproject</groupId>
43 <artifactId>onos-api</artifactId>
Yuta HIGUCHI1b151c62017-08-16 23:27:52 -070044 <version>${project.version}</version>
Mohammad Shahid0cf9c0e2017-08-09 15:58:19 +053045 </dependency>
46 <dependency>
47 <groupId>org.onosproject</groupId>
48 <artifactId>onlab-osgi</artifactId>
Yuta HIGUCHI1b151c62017-08-16 23:27:52 -070049 <version>${project.version}</version>
Mohammad Shahid0cf9c0e2017-08-09 15:58:19 +053050 </dependency>
51 <dependency>
52 <groupId>junit</groupId>
53 <artifactId>junit</artifactId>
Mohammad Shahid0cf9c0e2017-08-09 15:58:19 +053054 <scope>test</scope>
55 </dependency>
56 <dependency>
57 <groupId>org.onosproject</groupId>
58 <artifactId>onos-api</artifactId>
Yuta HIGUCHI1b151c62017-08-16 23:27:52 -070059 <version>${project.version}</version>
Mohammad Shahid0cf9c0e2017-08-09 15:58:19 +053060 <scope>test</scope>
61 <classifier>tests</classifier>
62 </dependency>
63 <dependency>
64 <groupId>org.apache.felix</groupId>
65 <artifactId>org.apache.felix.scr.annotations</artifactId>
Mohammad Shahid0cf9c0e2017-08-09 15:58:19 +053066 <scope>provided</scope>
67 </dependency>
68 <dependency>
69 <groupId>org.apache.karaf.shell</groupId>
70 <artifactId>org.apache.karaf.shell.console</artifactId>
71 </dependency>
72 <dependency>
73 <groupId>org.onosproject</groupId>
74 <artifactId>onos-cli</artifactId>
Yuta HIGUCHI1b151c62017-08-16 23:27:52 -070075 <version>${project.version}</version>
Mohammad Shahid0cf9c0e2017-08-09 15:58:19 +053076 </dependency>
77 <dependency>
78 <groupId>org.apache.httpcomponents</groupId>
79 <artifactId>httpasyncclient</artifactId>
80 <version>4.1.1</version>
81 </dependency>
82 <dependency>
83 <groupId>org.apache.httpcomponents</groupId>
84 <artifactId>httpcore</artifactId>
85 <version>4.4.4</version>
86 </dependency>
87 <dependency>
88 <groupId>org.onosproject</groupId>
89 <artifactId>onlab-junit</artifactId>
90 <scope>test</scope>
91 </dependency>
Mohammad Shahid0cf9c0e2017-08-09 15:58:19 +053092 </dependencies>
93</project>