Rene
(René Groeschke)
April 23, 2014, 12:24pm
1
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é
huxi
(Jörn Huxhorn)
April 23, 2014, 4:31pm
2
No regressions in our projects.
Turned out to be a problem with the code, not with Groovy or Gradle.
Thierry
(Thierry Guérin)
April 29, 2014, 9:36am
5
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