I am running Eclipse Luna SR2 with Buildship 1.0.1.
The Gradle projects I create using the wizard are building with Gradle 2.5-rc-2, but I would like to use 2.6 which is the latest version.
How can I do it?
Setting the task had no effect:
apply plugin: 'java'
repositories {
jcenter()
}
dependencies {
testCompile 'junit:junit:4.12'
}
task wrapper(type: Wrapper) {
gradleVersion = '2.6'
}
Solution: For some reason it is only working if I restart Eclipse after setting the version as Makoto suggested.
If you want to use the wrapper, it's a simple matter of setting the gradleVersion
property:
task wrapper(type: Wrapper) {
gradleVersion = '2.6'
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With