A gradle wrapper script allows a developer to download and use the correct version of gradle for Vanilla without needing to install it on their machine. Vanilla uses v1.3.0 of the Android Gradle plugin, which requires Gradle v2.2.1. This commit adds the gradle wrapper, generated using ``` gradle wrapper --gradle-version 2.2.1 ``` This command generates a gradle-wrapper.properties that links to the binary distribution of Gradle. For better integration with IDE's, this commit changes the URL to '*-all.zip' More information about the Gradle wrapper can be found in the [Gradle User Guide - Wrapper](https://docs.gradle.org/current/userguide/gradle_wrapper.html)
7 lines
233 B
Properties
7 lines
233 B
Properties
#Tue Mar 29 11:18:03 AEDT 2016
|
|
distributionBase=GRADLE_USER_HOME
|
|
distributionPath=wrapper/dists
|
|
zipStoreBase=GRADLE_USER_HOME
|
|
zipStorePath=wrapper/dists
|
|
distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip
|