protected Project findProject()

in src/main/groovy/org/jetbrains/gradle/ext/IdeArtifacts.groovy [264:270]


  protected Project findProject() {
    def find = project.rootProject.allprojects.find { it.idea.module.name == moduleName }
    if (find == null) {
      project.logger.warn("Failed to find gradle project for with idea module name ${moduleName}")
    }
    return find
  }