aboutsummaryrefslogtreecommitdiff
path: root/project/plugins.sbt
diff options
context:
space:
mode:
authorAhir Reddy <ahirreddy@gmail.com>2015-09-11 13:06:14 +0100
committerSean Owen <sowen@cloudera.com>2015-09-11 13:06:14 +0100
commit9bbe33f318c866c0b13088917542715062f0787f (patch)
tree899b67bc3381aed391e5b5ad0fcf10b55252c156 /project/plugins.sbt
parente1d7f64296d8164cc4c935aa524af664f63bf9c1 (diff)
downloadspark-9bbe33f318c866c0b13088917542715062f0787f.tar.gz
spark-9bbe33f318c866c0b13088917542715062f0787f.tar.bz2
spark-9bbe33f318c866c0b13088917542715062f0787f.zip
[SPARK-10556] Remove explicit Scala version for sbt project build files
Previously, project/plugins.sbt explicitly set scalaVersion to 2.10.4. This can cause issues when using a version of sbt that is compiled against a different version of Scala (for example sbt 0.13.9 uses 2.10.5). Removing this explicit setting will cause build files to be compiled and run against the same version of Scala that sbt is compiled against. Note that this only applies to the project build files (items in project/), it is distinct from the version of Scala we target for the actual spark compilation. Author: Ahir Reddy <ahirreddy@gmail.com> Closes #8709 from ahirreddy/sbt-scala-version-fix.
Diffstat (limited to 'project/plugins.sbt')
-rw-r--r--project/plugins.sbt2
1 files changed, 0 insertions, 2 deletions
diff --git a/project/plugins.sbt b/project/plugins.sbt
index 51820460ca..c06687d8f1 100644
--- a/project/plugins.sbt
+++ b/project/plugins.sbt
@@ -1,5 +1,3 @@
-scalaVersion := "2.10.4"
-
resolvers += Resolver.url("artifactory", url("http://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-releases"))(Resolver.ivyStylePatterns)
resolvers += "Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/"