Gradle Version: 2.14.1
Operating System: Fedora 24
Is this a regression? If yes, which version of Gradle do you know it last worked for?
No
Sample code:
apply plugin: 'java'
apply plugin: Test
class Test implements Plugin<Project> {
@Override
void apply(Project project) {
// this is ok
println 'Calling println()'
// this line fails to build; comment out to be able to build
project.logger.quite 'Calling logger.quite()'
}
}
Log:
A problem occurred evaluating root project 'master'.
> Failed to apply plugin [class 'Test']
> No signature of method: org.gradle.internal.logging.slf4j.OutputEventListenerBackedLogger.quite() is applicable for argument types: (java.lang.String) values: [Calling logger.quite()]
Possible solutions: quiet(java.lang.String), quiet(java.lang.String, [Ljava.lang.Object;), quiet(java.lang.String, java.lang.Throwable), wait(), wait(long), trace(java.lang.String)
Would you please check?
Thank you,