in src/main/groovy/org/jetbrains/gradle/ext/IdeArtifacts.groovy [317:326]
void buildTo(File destination) {
def project = findProject()
if (project == null) {
return
}
project.copy {
from { project.sourceSets.collect { it.allSource } }
into destination
}
}