Jian Li | 7261c7b | 2016-03-05 00:04:55 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | a09fe5b | 2017-08-03 21:12:30 -0700 | [diff] [blame] | 3 | ~ Copyright 2016-present Open Networking Foundation |
Jian Li | 7261c7b | 2016-03-05 00:04:55 -0800 | [diff] [blame] | 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/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 User | 61881df | 2017-12-12 21:19:45 +0000 | [diff] [blame] | 25 | <version>1.13.0-SNAPSHOT</version> |
Jian Li | 7261c7b | 2016-03-05 00:04:55 -0800 | [diff] [blame] | 26 | </parent> |
| 27 | |
Jian Li | c0fe42d | 2016-03-28 15:19:16 -0700 | [diff] [blame] | 28 | <artifactId>onos-app-ganglia</artifactId> |
Jian Li | 7261c7b | 2016-03-05 00:04:55 -0800 | [diff] [blame] | 29 | <packaging>bundle</packaging> |
| 30 | |
| 31 | <description>Performance metric service reporter</description> |
| 32 | |
| 33 | <properties> |
Jian Li | c0fe42d | 2016-03-28 15:19:16 -0700 | [diff] [blame] | 34 | <onos.app.name>org.onosproject.gangliametrics</onos.app.name> |
| 35 | <onos.app.title>Ganglia Report and Query App</onos.app.title> |
Jian Li | 7261c7b | 2016-03-05 00:04:55 -0800 | [diff] [blame] | 36 | <onos.app.category>Monitoring</onos.app.category> |
| 37 | <onos.app.url>http://onosproject.org</onos.app.url> |
| 38 | <metrics.version>3.1.2</metrics.version> |
| 39 | </properties> |
| 40 | |
| 41 | <dependencies> |
| 42 | <dependency> |
| 43 | <groupId>org.onosproject</groupId> |
| 44 | <artifactId>onlab-misc</artifactId> |
| 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>org.onosproject</groupId> |
| 48 | <artifactId>onos-cli</artifactId> |
| 49 | <version>${project.version}</version> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>org.osgi</groupId> |
| 53 | <artifactId>org.osgi.core</artifactId> |
| 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>org.apache.karaf.shell</groupId> |
| 57 | <artifactId>org.apache.karaf.shell.console</artifactId> |
| 58 | </dependency> |
| 59 | <dependency> |
| 60 | <groupId>com.fasterxml.jackson.core</groupId> |
| 61 | <artifactId>jackson-databind</artifactId> |
| 62 | </dependency> |
| 63 | <dependency> |
| 64 | <groupId>com.fasterxml.jackson.core</groupId> |
| 65 | <artifactId>jackson-annotations</artifactId> |
| 66 | </dependency> |
| 67 | <dependency> |
| 68 | <groupId>org.osgi</groupId> |
| 69 | <artifactId>org.osgi.compendium</artifactId> |
| 70 | </dependency> |
| 71 | <dependency> |
| 72 | <groupId>io.dropwizard.metrics</groupId> |
| 73 | <artifactId>metrics-core</artifactId> |
| 74 | <version>${metrics.version}</version> |
| 75 | </dependency> |
| 76 | <dependency> |
| 77 | <groupId>io.dropwizard.metrics</groupId> |
| 78 | <artifactId>metrics-json</artifactId> |
| 79 | <version>${metrics.version}</version> |
| 80 | </dependency> |
| 81 | <dependency> |
| 82 | <groupId>io.dropwizard.metrics</groupId> |
| 83 | <artifactId>metrics-ganglia</artifactId> |
| 84 | <version>${metrics.version}</version> |
| 85 | </dependency> |
| 86 | <dependency> |
| 87 | <groupId>info.ganglia.gmetric4j</groupId> |
| 88 | <artifactId>gmetric4j</artifactId> |
Jian Li | 7261c7b | 2016-03-05 00:04:55 -0800 | [diff] [blame] | 89 | </dependency> |
| 90 | <dependency> |
| 91 | <groupId>org.acplt.remotetea</groupId> |
| 92 | <artifactId>remotetea-oncrpc</artifactId> |
Jian Li | 7261c7b | 2016-03-05 00:04:55 -0800 | [diff] [blame] | 93 | </dependency> |
| 94 | <dependency> |
| 95 | <groupId>org.onosproject</groupId> |
| 96 | <artifactId>onlab-junit</artifactId> |
| 97 | <scope>test</scope> |
| 98 | </dependency> |
| 99 | <dependency> |
| 100 | <groupId>org.easymock</groupId> |
| 101 | <artifactId>easymock</artifactId> |
| 102 | <scope>test</scope> |
| 103 | </dependency> |
| 104 | <dependency> |
| 105 | <groupId>org.onosproject</groupId> |
| 106 | <artifactId>onos-api</artifactId> |
Jian Li | 7261c7b | 2016-03-05 00:04:55 -0800 | [diff] [blame] | 107 | <classifier>tests</classifier> |
| 108 | <scope>test</scope> |
| 109 | </dependency> |
| 110 | </dependencies> |
| 111 | |
Yuta HIGUCHI | f5e7ef8 | 2017-04-21 11:12:52 -0700 | [diff] [blame] | 112 | <dependencyManagement> |
| 113 | <dependencies> |
| 114 | <dependency> |
| 115 | <groupId>info.ganglia.gmetric4j</groupId> |
| 116 | <artifactId>gmetric4j</artifactId> |
| 117 | <version>1.0.10</version> |
| 118 | </dependency> |
| 119 | <dependency> |
| 120 | <groupId>org.acplt.remotetea</groupId> |
| 121 | <artifactId>remotetea-oncrpc</artifactId> |
| 122 | <version>1.1.3</version> |
| 123 | </dependency> |
| 124 | </dependencies> |
| 125 | </dependencyManagement> |
Jian Li | 7261c7b | 2016-03-05 00:04:55 -0800 | [diff] [blame] | 126 | </project> |