Gradle wrapper does nothing

Hi, I try to create the gradle wrapper, but nothing happens.

My build.gradle looks like

task wrapper(Type: Wrapper) {

gradleVersion = ‘1.5’

}

I execute the command ‘gradle -d wrapper’ and the output is: https://gist.github.com/CQQL/5423565 It says, that it skips the wrapper task, because it has no actions. What is going on?

I am using the 1.5 version, that I just downloaded from http://www.gradle.org/downloads.

Thanks in advance, Marten

Your build script contains a typo - it should be ‘type:’ with a lowercase ‘t’. Ideally, Gradle would flag this as an error, but currently it doesn’t.

Thank you. I thought I saw it like that in the user guide.