You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by pw...@apache.org on 2014/05/11 06:08:08 UTC

git commit: Enabled incremental build that comes with sbt 0.13.2

Repository: spark
Updated Branches:
  refs/heads/master 83e0424d8 -> 70bcdef48


Enabled incremental build that comes with sbt 0.13.2

More info at. https://github.com/sbt/sbt/issues/1010

Author: Prashant Sharma <pr...@imaginea.com>

Closes #525 from ScrapCodes/sbt-inc-opt and squashes the following commits:

ba8fa42 [Prashant Sharma] Enabled incremental build that comes with sbt 0.13.2


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/70bcdef4
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/70bcdef4
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/70bcdef4

Branch: refs/heads/master
Commit: 70bcdef48a051028598d380d41dfce1c9bfb2b9b
Parents: 83e0424
Author: Prashant Sharma <pr...@imaginea.com>
Authored: Sat May 10 21:08:04 2014 -0700
Committer: Patrick Wendell <pw...@gmail.com>
Committed: Sat May 10 21:08:04 2014 -0700

----------------------------------------------------------------------
 project/SparkBuild.scala | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/70bcdef4/project/SparkBuild.scala
----------------------------------------------------------------------
diff --git a/project/SparkBuild.scala b/project/SparkBuild.scala
index a12c618..12791e4 100644
--- a/project/SparkBuild.scala
+++ b/project/SparkBuild.scala
@@ -176,7 +176,7 @@ object SparkBuild extends Build {
     retrievePattern := "[type]s/[artifact](-[revision])(-[classifier]).[ext]",
     transitiveClassifiers in Scope.GlobalScope := Seq("sources"),
     testListeners <<= target.map(t => Seq(new eu.henkelmann.sbt.JUnitXmlTestsListener(t.getAbsolutePath))),
-
+    incOptions := incOptions.value.withNameHashing(true),
     // Fork new JVMs for tests and set Java options for those
     fork := true,
     javaOptions in Test += "-Dspark.home=" + sparkHome,