blob: 6f30502bb8d64b45eebafc2f7ed0a7c86462fe71 [file] [log] [blame]
sangyun-han805219a2016-03-26 12:58:27 +09001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connora09fe5b2017-08-03 21:12:30 -07003 ~ Copyright 2016-present Open Networking Foundation
sangyun-han805219a2016-03-26 12:58:27 +09004 ~
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/maven-v4_0_0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
22 <parent>
23 <groupId>org.onosproject</groupId>
24 <artifactId>onos-apps</artifactId>
Ray Milkey312d9872018-08-20 16:09:54 -070025 <version>1.15.0-SNAPSHOT</version>
sangyun-han805219a2016-03-26 12:58:27 +090026 </parent>
27
Yuta HIGUCHI78472272018-05-03 17:08:16 -070028 <artifactId>onos-apps-graphitemetrics</artifactId>
sangyun-han805219a2016-03-26 12:58:27 +090029 <packaging>bundle</packaging>
30
31 <description>Performance metric service reporter and retriever for graphite</description>
32
33 <properties>
34 <onos.app.name>org.onosproject.graphitemetrics</onos.app.name>
35 <onos.app.title>Graphite Report and Query App</onos.app.title>
36 <onos.app.category>Monitoring</onos.app.category>
37 <onos.app.url>http://onosproject.org</onos.app.url>
Jian Lid3f9dd62017-05-23 01:45:17 +090038 <metrics.version>3.2.2</metrics.version>
sangyun-han805219a2016-03-26 12:58:27 +090039 </properties>
40
41 <dependencies>
42 <dependency>
43 <groupId>org.osgi</groupId>
44 <artifactId>org.osgi.compendium</artifactId>
45 </dependency>
46 <dependency>
47 <groupId>org.onosproject</groupId>
48 <artifactId>onlab-misc</artifactId>
49 </dependency>
50 <dependency>
51 <groupId>org.onosproject</groupId>
52 <artifactId>onos-cli</artifactId>
53 <version>${project.version}</version>
54 </dependency>
55 <dependency>
56 <groupId>org.apache.karaf.shell</groupId>
57 <artifactId>org.apache.karaf.shell.console</artifactId>
58 </dependency>
59 <dependency>
sangyun-han805219a2016-03-26 12:58:27 +090060 <groupId>io.dropwizard.metrics</groupId>
61 <artifactId>metrics-core</artifactId>
sangyun-han805219a2016-03-26 12:58:27 +090062 </dependency>
63 <dependency>
64 <groupId>io.dropwizard.metrics</groupId>
65 <artifactId>metrics-graphite</artifactId>
66 <version>${metrics.version}</version>
67 </dependency>
68 <dependency>
69 <groupId>org.onosproject</groupId>
sangyun-han805219a2016-03-26 12:58:27 +090070 <artifactId>onlab-junit</artifactId>
71 <scope>test</scope>
72 </dependency>
73 <dependency>
74 <groupId>org.easymock</groupId>
75 <artifactId>easymock</artifactId>
76 <scope>test</scope>
77 </dependency>
78 <dependency>
79 <groupId>org.onosproject</groupId>
80 <artifactId>onos-api</artifactId>
sangyun-han805219a2016-03-26 12:58:27 +090081 <classifier>tests</classifier>
82 <scope>test</scope>
83 </dependency>
84 </dependencies>
85
86</project>