aboutsummaryrefslogtreecommitdiff
path: root/graph
diff options
context:
space:
mode:
authorJoey <joseph.e.gonzalez@gmail.com>2013-10-29 16:43:46 -0700
committerJoey <joseph.e.gonzalez@gmail.com>2013-10-29 16:43:46 -0700
commit06adf636c5be384832cca095228b22d5fe1d2ae5 (patch)
treedb232a795271bea39b38327b58e55ad7749196da /graph
parent098768e0b9c3c54abb76aab6d3f4bb5e99486840 (diff)
parent8236d5dcc472f8e8ff19a5e8788f926047edbbd7 (diff)
downloadspark-06adf636c5be384832cca095228b22d5fe1d2ae5.tar.gz
spark-06adf636c5be384832cca095228b22d5fe1d2ae5.tar.bz2
spark-06adf636c5be384832cca095228b22d5fe1d2ae5.zip
Merge pull request #33 from kellrott/master
Fixing graph/pom.xml
Diffstat (limited to 'graph')
-rw-r--r--graph/pom.xml33
1 files changed, 28 insertions, 5 deletions
diff --git a/graph/pom.xml b/graph/pom.xml
index 1cd9cda98b..fd3dcaad7c 100644
--- a/graph/pom.xml
+++ b/graph/pom.xml
@@ -1,21 +1,44 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ ~ Licensed to the Apache Software Foundation (ASF) under one or more
+ ~ contributor license agreements. See the NOTICE file distributed with
+ ~ this work for additional information regarding copyright ownership.
+ ~ The ASF licenses this file to You under the Apache License, Version 2.0
+ ~ (the "License"); you may not use this file except in compliance with
+ ~ the License. You may obtain a copy of the License at
+ ~
+ ~ http://www.apache.org/licenses/LICENSE-2.0
+ ~
+ ~ Unless required by applicable law or agreed to in writing, software
+ ~ distributed under the License is distributed on an "AS IS" BASIS,
+ ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ ~ See the License for the specific language governing permissions and
+ ~ limitations under the License.
+ -->
+
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>org.spark-project</groupId>
- <artifactId>parent</artifactId>
- <version>0.7.0-SNAPSHOT</version>
+ <groupId>org.apache.spark</groupId>
+ <artifactId>spark-parent</artifactId>
+ <version>0.9.0-incubating-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
- <groupId>org.spark-project</groupId>
- <artifactId>spark-graph</artifactId>
+ <groupId>org.apache.spark</groupId>
+ <artifactId>spark-graph_2.9.3</artifactId>
<packaging>jar</packaging>
<name>Spark Graph</name>
<url>http://spark-project.org/</url>
<dependencies>
<dependency>
+ <groupId>org.apache.spark</groupId>
+ <artifactId>spark-core_2.9.3</artifactId>
+ <version>${project.version}</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
</dependency>