5-Minute Intro to Gradle
$ gradle idea
apply plugin: 'java' // applies many conventions
apply plugin: 'idea' // adds tasks to generate project file (with sources!)
repositories {
mavenCentral() // find your dependencies on http://search.maven.org
}
dependencies {
compile 'org.apache.commons:commons-lang3:3.1' // add project dependencies here
testCompile 'junit:junit:4.11' // test-only dependencies here
}
$ mkdir -p my-project/src/{main,test}/java
$ cd my-project
$ vim build.gradle