Skip to content

Commit 764353d

Browse files
markhamstramateiz
authored andcommitted
[SPARK-1342] Scala 2.10.4
Just a Scala version increment Author: Mark Hamstra <markhamstra@gmail.com> Closes #259 from markhamstra/scala-2.10.4 and squashes the following commits: fbec547 [Mark Hamstra] [SPARK-1342] Bumped Scala version to 2.10.4
1 parent f5c418d commit 764353d

File tree

10 files changed

+11
-11
lines changed

10 files changed

+11
-11
lines changed

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@
150150
<artifactId>json4s-jackson_${scala.binary.version}</artifactId>
151151
<version>3.2.6</version>
152152
<!-- see also exclusion for lift-json; this is necessary since it depends on
153-
scala-library and scalap 2.10.0, but we use 2.10.3, and only override
153+
scala-library and scalap 2.10.0, but we use 2.10.4, and only override
154154
scala-library -->
155155
<exclusions>
156156
<exclusion>

dev/audit-release/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ run them locally by setting appropriate environment variables.
44

55
```
66
$ cd sbt_app_core
7-
$ SCALA_VERSION=2.10.3 \
7+
$ SCALA_VERSION=2.10.4 \
88
SPARK_VERSION=1.0.0-SNAPSHOT \
99
SPARK_RELEASE_REPOSITORY=file:///home/patrick/.ivy2/local \
1010
sbt run

dev/audit-release/audit_release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
RELEASE_KEY = "9E4FE3AF"
3636
RELEASE_REPOSITORY = "https://repository.apache.org/content/repositories/orgapachespark-1006/"
3737
RELEASE_VERSION = "1.0.0"
38-
SCALA_VERSION = "2.10.3"
38+
SCALA_VERSION = "2.10.4"
3939
SCALA_BINARY_VERSION = "2.10"
4040
##
4141

docker/spark-test/base/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ RUN apt-get update
2525
# install a few other useful packages plus Open Jdk 7
2626
RUN apt-get install -y less openjdk-7-jre-headless net-tools vim-tiny sudo openssh-server
2727

28-
ENV SCALA_VERSION 2.10.3
28+
ENV SCALA_VERSION 2.10.4
2929
ENV CDH_VERSION cdh4
3030
ENV SCALA_HOME /opt/scala-$SCALA_VERSION
3131
ENV SPARK_HOME /opt/spark

docs/_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ markdown: kramdown
66
SPARK_VERSION: 1.0.0-SNAPSHOT
77
SPARK_VERSION_SHORT: 1.0.0
88
SCALA_BINARY_VERSION: "2.10"
9-
SCALA_VERSION: "2.10.3"
9+
SCALA_VERSION: "2.10.4"
1010
MESOS_VERSION: 0.13.0
1111
SPARK_ISSUE_TRACKER_URL: https://spark-project.atlassian.net
1212
SPARK_GITHUB_URL: https://github.com/apache/spark

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110

111111
<java.version>1.6</java.version>
112112

113-
<scala.version>2.10.3</scala.version>
113+
<scala.version>2.10.4</scala.version>
114114
<scala.binary.version>2.10</scala.binary.version>
115115
<mesos.version>0.13.0</mesos.version>
116116
<akka.group>org.spark-project.akka</akka.group>
@@ -380,7 +380,7 @@
380380
<artifactId>lift-json_${scala.binary.version}</artifactId>
381381
<version>2.5.1</version>
382382
<!-- see also exclusion for json4s; this is necessary since it depends on
383-
scala-library and scalap 2.10.0, but we use 2.10.3, and only override
383+
scala-library and scalap 2.10.0, but we use 2.10.4, and only override
384384
scala-library -->
385385
<exclusions>
386386
<exclusion>

project/SparkBuild.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ object SparkBuild extends Build {
152152
def sharedSettings = Defaults.defaultSettings ++ MimaBuild.mimaSettings(file(sparkHome)) ++ Seq(
153153
organization := "org.apache.spark",
154154
version := SPARK_VERSION,
155-
scalaVersion := "2.10.3",
155+
scalaVersion := "2.10.4",
156156
scalacOptions := Seq("-Xmax-classfile-name", "120", "-unchecked", "-deprecation",
157157
"-target:" + SCALAC_JVM_VERSION),
158158
javacOptions := Seq("-target", JAVAC_JVM_VERSION, "-source", JAVAC_JVM_VERSION),

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
scalaVersion := "2.10.3"
1+
scalaVersion := "2.10.4"
22

33
resolvers += Resolver.url("artifactory", url("http://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-releases"))(Resolver.ivyStylePatterns)
44

project/project/SparkPluginBuild.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ object SparkPluginDef extends Build {
3232
name := "spark-style",
3333
organization := "org.apache.spark",
3434
version := sparkVersion,
35-
scalaVersion := "2.10.3",
35+
scalaVersion := "2.10.4",
3636
scalacOptions := Seq("-unchecked", "-deprecation"),
3737
libraryDependencies ++= Dependencies.scalaStyle
3838
)

sql/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ import org.apache.spark.sql.catalyst.util._
3838
import org.apache.spark.sql.execution
3939
import org.apache.spark.sql.hive._
4040
import org.apache.spark.sql.hive.TestHive._
41-
Welcome to Scala version 2.10.3 (Java HotSpot(TM) 64-Bit Server VM, Java 1.7.0_45).
41+
Welcome to Scala version 2.10.4 (Java HotSpot(TM) 64-Bit Server VM, Java 1.7.0_45).
4242
Type in expressions to have them evaluated.
4343
Type :help for more information.
4444

0 commit comments

Comments
 (0)