Skip to content
Snippets Groups Projects
Commit 00e78b66 authored by Jey Kottalam's avatar Jey Kottalam
Browse files

Release v0.7.1

parent 9d06bc91
No related branches found
Tags v0.7.1
No related merge requests found
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
<parent> <parent>
<groupId>org.spark-project</groupId> <groupId>org.spark-project</groupId>
<artifactId>spark-parent</artifactId> <artifactId>spark-parent</artifactId>
<version>0.7.1-SNAPSHOT</version> <version>0.7.1</version>
<relativePath>../pom.xml</relativePath> <relativePath>../pom.xml</relativePath>
</parent> </parent>
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
<parent> <parent>
<groupId>org.spark-project</groupId> <groupId>org.spark-project</groupId>
<artifactId>spark-parent</artifactId> <artifactId>spark-parent</artifactId>
<version>0.7.1-SNAPSHOT</version> <version>0.7.1</version>
<relativePath>../pom.xml</relativePath> <relativePath>../pom.xml</relativePath>
</parent> </parent>
...@@ -134,14 +134,14 @@ ...@@ -134,14 +134,14 @@
<configuration> <configuration>
<exportAntProperties>true</exportAntProperties> <exportAntProperties>true</exportAntProperties>
<tasks> <tasks>
<property name="spark.classpath" refid="maven.test.classpath"/> <property name="spark.classpath" refid="maven.test.classpath" />
<property environment="env"/> <property environment="env" />
<fail message="Please set the SCALA_HOME (or SCALA_LIBRARY_PATH if scala is on the path) environment variables and retry."> <fail message="Please set the SCALA_HOME (or SCALA_LIBRARY_PATH if scala is on the path) environment variables and retry.">
<condition> <condition>
<not> <not>
<or> <or>
<isset property="env.SCALA_HOME"/> <isset property="env.SCALA_HOME" />
<isset property="env.SCALA_LIBRARY_PATH"/> <isset property="env.SCALA_LIBRARY_PATH" />
</or> </or>
</not> </not>
</condition> </condition>
......
...@@ -3,7 +3,7 @@ markdown: kramdown ...@@ -3,7 +3,7 @@ markdown: kramdown
# These allow the documentation to be updated with nerw releases # These allow the documentation to be updated with nerw releases
# of Spark, Scala, and Mesos. # of Spark, Scala, and Mesos.
SPARK_VERSION: 0.7.1-SNAPSHOT SPARK_VERSION: 0.7.1
SPARK_VERSION_SHORT: 0.7.1 SPARK_VERSION_SHORT: 0.7.1
SCALA_VERSION: 2.9.3 SCALA_VERSION: 2.9.3
MESOS_VERSION: 0.9.0-incubating MESOS_VERSION: 0.9.0-incubating
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
<parent> <parent>
<groupId>org.spark-project</groupId> <groupId>org.spark-project</groupId>
<artifactId>spark-parent</artifactId> <artifactId>spark-parent</artifactId>
<version>0.7.1-SNAPSHOT</version> <version>0.7.1</version>
<relativePath>../pom.xml</relativePath> <relativePath>../pom.xml</relativePath>
</parent> </parent>
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>org.spark-project</groupId> <groupId>org.spark-project</groupId>
<artifactId>spark-parent</artifactId> <artifactId>spark-parent</artifactId>
<version>0.7.1-SNAPSHOT</version> <version>0.7.1</version>
<packaging>pom</packaging> <packaging>pom</packaging>
<name>Spark Project Parent POM</name> <name>Spark Project Parent POM</name>
<url>http://spark-project.org/</url> <url>http://spark-project.org/</url>
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
<connection>scm:git:git@github.com:mesos/spark.git</connection> <connection>scm:git:git@github.com:mesos/spark.git</connection>
<developerConnection>scm:git:git@github.com:mesos/spark.git</developerConnection> <developerConnection>scm:git:git@github.com:mesos/spark.git</developerConnection>
<url>scm:git:git@github.com:mesos/spark.git</url> <url>scm:git:git@github.com:mesos/spark.git</url>
<tag>v0.7.1</tag>
</scm> </scm>
<developers> <developers>
<developer> <developer>
......
...@@ -35,7 +35,7 @@ object SparkBuild extends Build { ...@@ -35,7 +35,7 @@ object SparkBuild extends Build {
def sharedSettings = Defaults.defaultSettings ++ Seq( def sharedSettings = Defaults.defaultSettings ++ Seq(
organization := "org.spark-project", organization := "org.spark-project",
version := "0.7.1-SNAPSHOT", version := "0.7.1",
scalaVersion := "2.9.3", scalaVersion := "2.9.3",
scalacOptions := Seq("-unchecked", "-optimize", "-deprecation"), scalacOptions := Seq("-unchecked", "-optimize", "-deprecation"),
unmanagedJars in Compile <<= baseDirectory map { base => (base / "lib" ** "*.jar").classpath }, unmanagedJars in Compile <<= baseDirectory map { base => (base / "lib" ** "*.jar").classpath },
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
<parent> <parent>
<groupId>org.spark-project</groupId> <groupId>org.spark-project</groupId>
<artifactId>spark-parent</artifactId> <artifactId>spark-parent</artifactId>
<version>0.7.1-SNAPSHOT</version> <version>0.7.1</version>
<relativePath>../pom.xml</relativePath> <relativePath>../pom.xml</relativePath>
</parent> </parent>
...@@ -52,7 +52,7 @@ ...@@ -52,7 +52,7 @@
</goals> </goals>
<configuration> <configuration>
<transformers> <transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/> <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
<transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
<resource>reference.conf</resource> <resource>reference.conf</resource>
</transformer> </transformer>
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
<parent> <parent>
<groupId>org.spark-project</groupId> <groupId>org.spark-project</groupId>
<artifactId>spark-parent</artifactId> <artifactId>spark-parent</artifactId>
<version>0.7.1-SNAPSHOT</version> <version>0.7.1</version>
<relativePath>../pom.xml</relativePath> <relativePath>../pom.xml</relativePath>
</parent> </parent>
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
<parent> <parent>
<groupId>org.spark-project</groupId> <groupId>org.spark-project</groupId>
<artifactId>spark-parent</artifactId> <artifactId>spark-parent</artifactId>
<version>0.7.1-SNAPSHOT</version> <version>0.7.1</version>
<relativePath>../pom.xml</relativePath> <relativePath>../pom.xml</relativePath>
</parent> </parent>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment