|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | +~ Licensed to the Apache Software Foundation (ASF) under one or more |
| 4 | +~ contributor license agreements. See the NOTICE file distributed with |
| 5 | +~ this work for additional information regarding copyright ownership. |
| 6 | +~ The ASF licenses this file to You under the Apache License, Version 2.0 |
| 7 | +~ (the "License"); you may not use this file except in compliance with |
| 8 | +~ the License. You may obtain a copy of the License at |
| 9 | +~ |
| 10 | +~ http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | +~ |
| 12 | +~ Unless required by applicable law or agreed to in writing, software |
| 13 | +~ distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | +~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | +~ See the License for the specific language governing permissions and |
| 16 | +~ limitations under the License. |
| 17 | +--> |
| 18 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 19 | + <modelVersion>4.0.0</modelVersion> |
| 20 | + <parent> |
| 21 | + <groupId>org.apache.spark</groupId> |
| 22 | + <artifactId>spark-parent</artifactId> |
| 23 | + <version>1.0.0-SNAPSHOT</version> |
| 24 | + <relativePath>../../pom.xml</relativePath> |
| 25 | + </parent> |
| 26 | + |
| 27 | + <!-- Ganglia integration is not included by default due to LGPL-licensed code --> |
| 28 | + <groupId>org.apache.spark</groupId> |
| 29 | + <artifactId>spark-ganglia-lgpl_2.10</artifactId> |
| 30 | + <packaging>jar</packaging> |
| 31 | + <name>Spark Ganglia Integration</name> |
| 32 | + |
| 33 | + <dependencies> |
| 34 | + <dependency> |
| 35 | + <groupId>org.apache.spark</groupId> |
| 36 | + <artifactId>spark-core_${scala.binary.version}</artifactId> |
| 37 | + <version>${project.version}</version> |
| 38 | + </dependency> |
| 39 | + |
| 40 | + <dependency> |
| 41 | + <groupId>com.codahale.metrics</groupId> |
| 42 | + <artifactId>metrics-ganglia</artifactId> |
| 43 | + </dependency> |
| 44 | + </dependencies> |
| 45 | +</project> |
0 commit comments