void buildTo()

in src/main/groovy/org/jetbrains/gradle/ext/IdeArtifacts.groovy [298:308]


  void buildTo(File destination) {
    def project = findProject()
    if (project == null) {
      return
    }
    def testOutput = project.sourceSets["test"].output
    project.copy {
      from testOutput.classesDirs + testOutput.resourcesDir + testOutput.dirs
      into destination
    }
  }