blob: ffe5248da92e061f0ba48b74672b386414a9de56 [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>
ONOS Jenkins Userd339e322018-01-03 22:44:14 +000025 <version>1.11.2-SNAPSHOT</version>
sangyun-han805219a2016-03-26 12:58:27 +090026 </parent>
27
28 <artifactId>onos-app-graphite</artifactId>
29 <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>
62 <version>${metrics.version}</version>
63 </dependency>
64 <dependency>
65 <groupId>io.dropwizard.metrics</groupId>
66 <artifactId>metrics-graphite</artifactId>
67 <version>${metrics.version}</version>
68 </dependency>
69 <dependency>
70 <groupId>org.onosproject</groupId>
sangyun-han805219a2016-03-26 12:58:27 +090071 <artifactId>onlab-junit</artifactId>
72 <scope>test</scope>
73 </dependency>
74 <dependency>
75 <groupId>org.easymock</groupId>
76 <artifactId>easymock</artifactId>
77 <scope>test</scope>
78 </dependency>
79 <dependency>
80 <groupId>org.onosproject</groupId>
81 <artifactId>onos-api</artifactId>
sangyun-han805219a2016-03-26 12:58:27 +090082 <classifier>tests</classifier>
83 <scope>test</scope>
84 </dependency>
85 </dependencies>
86
87</project>