How to create Java Gradle project from command line?
It should create standard maven folder layout like on the picture below.

UPDATE:
- From http://www.gradle.org/docs/current/userguide/tutorial_java_projects.html
I need create file
build.gradlewith 2 lines
apply plugin: 'java' apply plugin: 'eclipse'
- Add to
build.gradletask below, than executegradle create-dirs
task "create-dirs" << { sourceSets*.java.srcDirs*.each { it.mkdirs() } sourceSets*.resources.srcDirs*.each { it.mkdirs() } }
So is there way to do it in one command?