Fork me on GitHub

The Enterprise Automation Tool

Build

Test

Deploy

Automation Evolved

  • Strong yet flexible conventions
  • Enterprise level control capabilities
  • Manageable and understandable builds

Nightly Build

The Gradle project publishes a snapshot distribution nightly, incorporating the day's changes. These development snapshots can be downloaded for use (or configured to be used by the Gradle wrapper). However, the Gradle development team offers no guarantees as to their stability or behaviour.

The version number assigned to the nightly build does not necessarily reflect the version number of the next Gradle release.

The latest nightly was uploaded 24th May 2012.

Download

Using with the Gradle Wrapper

To use the nightly via the Gradle wrapper you can either update your wrapper properties file (at $projectDir/gradle/gradle-wrapper.properties by default) to contain:

distributionUrl=http\://services.gradle.org/distributions-snapshots/gradle-1.1-rc-1-20120524000033+0200-bin.zip

Or you can configure the Wrapper task with:

task wrapper(type: Wrapper) {
  gradleVersion = "1.1-rc-1-20120524000033+0200"
}

Then execute gradle wrapper to get the new wrapper files.

Documentation

Successful Gradle Users