blob: cd39c335dbeae8d550d7229369ea8bf241a17e2b [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>
24 <version>1.11.0-SNAPSHOT</version>
25 </parent>
26
27 <artifactId>onos-app-gluon</artifactId>
28 <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>
35 <onos.version>1.11.0-SNAPSHOT</onos.version>
36 <onos.app.name>onos-app-gluon</onos.app.name>
37 <onos.app.origin>Huawei Technology India Pvt Ltd</onos.app.origin>
38 <onos.app.title>Gluon App</onos.app.title>
39 <onos.app.url>http://onosproject.org</onos.app.url>
40 </properties>
41 <dependencies>
42 <dependency>
43 <groupId>org.onosproject</groupId>
44 <artifactId>onos-api</artifactId>
45 <version>${onos.version}</version>
46 </dependency>
47 <dependency>
48 <groupId>org.onosproject</groupId>
49 <artifactId>onlab-osgi</artifactId>
50 <version>${onos.version}</version>
51 </dependency>
52 <dependency>
53 <groupId>junit</groupId>
54 <artifactId>junit</artifactId>
55 <version>4.12</version>
56 <scope>test</scope>
57 </dependency>
58 <dependency>
59 <groupId>org.onosproject</groupId>
60 <artifactId>onos-api</artifactId>
61 <version>${onos.version}</version>
62 <scope>test</scope>
63 <classifier>tests</classifier>
64 </dependency>
65 <dependency>
66 <groupId>org.apache.felix</groupId>
67 <artifactId>org.apache.felix.scr.annotations</artifactId>
68 <version>1.9.12</version>
69 <scope>provided</scope>
70 </dependency>
71 <dependency>
72 <groupId>org.apache.karaf.shell</groupId>
73 <artifactId>org.apache.karaf.shell.console</artifactId>
74 </dependency>
75 <dependency>
76 <groupId>org.onosproject</groupId>
77 <artifactId>onos-cli</artifactId>
78 <version>1.11.0-SNAPSHOT</version>
79 </dependency>
80 <dependency>
81 <groupId>org.apache.httpcomponents</groupId>
82 <artifactId>httpasyncclient</artifactId>
83 <version>4.1.1</version>
84 </dependency>
85 <dependency>
86 <groupId>org.apache.httpcomponents</groupId>
87 <artifactId>httpcore</artifactId>
88 <version>4.4.4</version>
89 </dependency>
90 <dependency>
91 <groupId>org.onosproject</groupId>
92 <artifactId>onlab-junit</artifactId>
93 <scope>test</scope>
94 </dependency>
95 <dependency>
96 <groupId>org.onosproject</groupId>
97 <artifactId>onos-core-net</artifactId>
98 <version>1.11.0-SNAPSHOT</version>
99 <scope>test</scope>
100 </dependency>
101 </dependencies>
102</project>