-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Include Gradle Wrapper #1
Comments
Why don't we just tell them to install gradle? |
They might have installed an older version of Gradle, or a newer incompatible version. But, with the gradle wrapper; you can control the version. |
In the README, we could control the gradle version we want them to use. I don't see why this is a big deal, I couldn't tell you the difference between any two gradle versions. |
Really? (gradle differences) New version: plugins {
id 'java'
} Old version: apply plugin: 'java' |
We could just say "use the latest version of Gradle" |
Having to redownload Gradle, manually from the webpage and extracting it; whenever a gradle version comes out is just plain repetitive. The Gradle Wrapper automates this process. |
lol use linux But seriously, we'll probably add a wrapper. |
No one seems to have 'redownloading' issue with maven, so I'm not exactly sure why the wrapper always comes up with gradle. |
@Techcable using that logic is naive. The wrapper makes it simple even for those on *nix platforms to build Gradle projects. For one thing, the version of Gradle provided may be too old (think of Debian or RHEL-based systems). |
No description provided.
The text was updated successfully, but these errors were encountered: