Detects possibly misplaced calls to Gradle methods.

Gradle buildscripts comprise a lot of nested closures, making the code structure similar to a markup language. Due to the behavior of Groovy, the methods that you can write in the outer closures are also available in the inner ones. Such methods may have no meaning when written outside their scope.
Sometimes it may be hard to detect this situation. This inspection aims to detect such methods.

Example:


repositories {
  // the delegate of 'repositories' has method 'exclusiveContent', which can be written here
  maven {
    // the delegate of 'maven' has method 'content', which can be written here
    // but 'exclusiveContent' is also available
    exclusiveContent {} // reports 'exclusiveContent'
  }
}