Gradle 1.12-rc-2 is now available for testing

Gradle 1.12-rc-2 has just been released. Release notes are available at http://www.gradle.org/docs/release-candidate/release-notes and more information/documentation/download links can be found here: http://www.gradle.org/release-candidate

cheers, René

No regressions in our projects.

Groovy extension modules do not work with static compilation.

Please have a look

http://forums.gradle.org/gradle/topics/groovy_extension_modules_do_not_work_with_static_compilation_using_the_gradle_compiler#reply_14186525

Turned out to be a problem with the code, not with Groovy or Gradle.

This version introduces a regression: when a method is defined in build.gradle, it’s no longer available to the scripts that build.gradle includes. Example: --build.gradle-- void echo(String string) {

logger.quiet string } apply from: file(‘include.gradle’)

–include.gradle-- task myTask {

echo(‘this used to work’) }

This used to work with version 1.11 (and since at least 1.1, which is the oldest Gradle version that I still had handy).

Hope this helps (should I open a bug report?),

Thierry