You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@samza.apache.org by pm...@apache.org on 2021/06/15 18:36:42 UTC

[samza] branch master updated: SAMZA-1885: Enable parallel task execution for build (#1504)

This is an automated email from the ASF dual-hosted git repository.

pmaheshwari pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/samza.git


The following commit(s) were added to refs/heads/master by this push:
     new 1f0f8bd  SAMZA-1885: Enable parallel task execution for build (#1504)
1f0f8bd is described below

commit 1f0f8bdb669894fc7b9c5947d2a8fc9e45d66014
Author: Cameron Lee <ca...@linkedin.com>
AuthorDate: Tue Jun 15 11:36:33 2021 -0700

    SAMZA-1885: Enable parallel task execution for build (#1504)
---
 build.gradle      | 5 -----
 gradle.properties | 2 ++
 2 files changed, 2 insertions(+), 5 deletions(-)

diff --git a/build.gradle b/build.gradle
index 64cef19..3ab8478 100644
--- a/build.gradle
+++ b/build.gradle
@@ -127,11 +127,6 @@ subprojects {
     toolVersion = "$checkstyleVersion"
   }
 
-  tasks.withType(ScalaCompile) {
-    // show compile errors in console output
-    logging.setLevel LogLevel.WARN
-  }
-
   tasks.withType(Test) {
     test {
       testLogging {
diff --git a/gradle.properties b/gradle.properties
index d7c4cd7..1a6ee97 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -25,3 +25,5 @@ org.gradle.jvmargs="-XX:MaxPermSize=512m"
 
 systemProp.file.encoding=utf-8
 checkstyleVersion=6.11.2
+
+org.gradle.parallel=true