You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@samza.apache.org by cr...@apache.org on 2015/04/08 01:25:45 UTC

[13/36] samza git commit: SAMZA-602; fix compilation issue with scala/java dependencies in samza-kafka

SAMZA-602; fix compilation issue with scala/java dependencies in samza-kafka


Project: http://git-wip-us.apache.org/repos/asf/samza/repo
Commit: http://git-wip-us.apache.org/repos/asf/samza/commit/7e4f3e49
Tree: http://git-wip-us.apache.org/repos/asf/samza/tree/7e4f3e49
Diff: http://git-wip-us.apache.org/repos/asf/samza/diff/7e4f3e49

Branch: refs/heads/samza-sql
Commit: 7e4f3e490b1adc2f1ce268f814c26ac0dd0b733e
Parents: 660d879
Author: Chris Riccomini <cr...@apache.org>
Authored: Mon Mar 16 11:19:53 2015 -0700
Committer: Chris Riccomini <cr...@apache.org>
Committed: Mon Mar 16 11:19:53 2015 -0700

----------------------------------------------------------------------
 build.gradle | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/samza/blob/7e4f3e49/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index 87334fa..113da2a 100644
--- a/build.gradle
+++ b/build.gradle
@@ -145,6 +145,9 @@ project(":samza-core_$scalaVersion") {
 project(":samza-kafka_$scalaVersion") {
   apply plugin: 'scala'
 
+  sourceSets.test.scala.srcDir "src/test/java"
+  sourceSets.test.java.srcDirs = []
+
   configurations {
     // Remove transitive dependencies from Zookeeper that we don't want.
     compile.exclude group: 'javax.jms', module: 'jms'