This is an automated email from the ASF dual-hosted git repository.
eyal pushed a commit to branch spark-tmp
in repository https://gitbox.apache.org/repos/asf/datafu.git
The following commit(s) were added to refs/heads/spark-tmp by this push:
new dc36aa4 Simplify Spark build by removing joint compilation
dc36aa4 is described below
commit dc36aa48c3f3274f78a841611a31149554ea4e8c
Author: Eyal Allweil <eyal@apache.org>
AuthorDate: Tue Jun 4 13:43:18 2019 +0300
Simplify Spark build by removing joint compilation
---
datafu-spark/build.gradle | 9 ---------
1 file changed, 9 deletions(-)
diff --git a/datafu-spark/build.gradle b/datafu-spark/build.gradle
index 2ac4522..8845675 100644
--- a/datafu-spark/build.gradle
+++ b/datafu-spark/build.gradle
@@ -48,15 +48,6 @@ cleanEclipse {
}
}
-// Force scala joint compilation
-sourceSets.main.scala.srcDir "src/main/java"
-sourceSets.test.scala.srcDir "src/test/java"
-
-// Disable the Javac compiler by forcing joint compilation by scalac. This is equivalent
to setting
-// tasks.compileTestJava.enabled = false
-sourceSets.main.java.srcDirs = []
-sourceSets.test.java.srcDirs = []
-
dependencies {
compile "org.scala-lang:scala-library:$scalaLibVersion"
|