Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 2825B200B96 for ; Thu, 6 Oct 2016 09:21:20 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 26BB8160AE0; Thu, 6 Oct 2016 07:21:20 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 64FE7160AAD for ; Thu, 6 Oct 2016 09:21:19 +0200 (CEST) Received: (qmail 88206 invoked by uid 500); 6 Oct 2016 07:21:18 -0000 Mailing-List: contact commits-help@aurora.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@aurora.apache.org Delivered-To: mailing list commits@aurora.apache.org Received: (qmail 88196 invoked by uid 99); 6 Oct 2016 07:21:18 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 06 Oct 2016 07:21:18 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 7060FDFE13; Thu, 6 Oct 2016 07:21:18 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: serb@apache.org To: commits@aurora.apache.org Message-Id: <085f2331d05147e29beb46b2954f6598@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: aurora git commit: Update to Gradle 3.1. Date: Thu, 6 Oct 2016 07:21:18 +0000 (UTC) archived-at: Thu, 06 Oct 2016 07:21:20 -0000 Repository: aurora Updated Branches: refs/heads/master 73821e5d9 -> 5fc633c98 Update to Gradle 3.1. I have skimmed the release notes and this change seems to be the most important one: "This release (2.14.1) fixes a critical defect to incremental builds that may prevent Gradle from executing tasks when inputs or outputs are out of date. This affects the correctness of builds using Gradle 2.14." The release notes talk about massive performance gains, but I have not noticed any. Since the Gradle daemon is now enabled by default, we can drop the properties file. Release notes: * https://docs.gradle.org/3.1/release-notes * https://docs.gradle.org/3.0/release-notes * https://docs.gradle.org/2.14/release-note Reviewed at https://reviews.apache.org/r/52577/ Project: http://git-wip-us.apache.org/repos/asf/aurora/repo Commit: http://git-wip-us.apache.org/repos/asf/aurora/commit/5fc633c9 Tree: http://git-wip-us.apache.org/repos/asf/aurora/tree/5fc633c9 Diff: http://git-wip-us.apache.org/repos/asf/aurora/diff/5fc633c9 Branch: refs/heads/master Commit: 5fc633c98e6f64a2984a90c6d55a627f4f91cc3f Parents: 73821e5 Author: Stephan Erb Authored: Thu Oct 6 09:20:57 2016 +0200 Committer: Stephan Erb Committed: Thu Oct 6 09:20:57 2016 +0200 ---------------------------------------------------------------------- buildSrc/gradle.properties | 2 +- gradle.properties | 2 -- gradle/wrapper/gradle-wrapper.properties | 2 +- 3 files changed, 2 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/aurora/blob/5fc633c9/buildSrc/gradle.properties ---------------------------------------------------------------------- diff --git a/buildSrc/gradle.properties b/buildSrc/gradle.properties index 8cfb328..a7214d3 100644 --- a/buildSrc/gradle.properties +++ b/buildSrc/gradle.properties @@ -1,3 +1,3 @@ # When upgrading gradle versions, be sure to update the relevant files in the aurora-packaging # repo as well. See https://reviews.apache.org/r/39113/ for an example. -GRADLE_VERSION = 2.14 +GRADLE_VERSION = 3.1 http://git-wip-us.apache.org/repos/asf/aurora/blob/5fc633c9/gradle.properties ---------------------------------------------------------------------- diff --git a/gradle.properties b/gradle.properties deleted file mode 100644 index 6fadce8..0000000 --- a/gradle.properties +++ /dev/null @@ -1,2 +0,0 @@ -# Settings can be found here: https://docs.gradle.org/current/userguide/build_environment.html -org.gradle.daemon=true http://git-wip-us.apache.org/repos/asf/aurora/blob/5fc633c9/gradle/wrapper/gradle-wrapper.properties ---------------------------------------------------------------------- diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index afe80a3..b290cf6 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-2.14-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-3.1-bin.zip