ragnarokkrr
5/26/2016 - 6:34 PM

5-Minute Intro to Gradle https://www.sghill.net/5-minute-intro-to-gradle.html

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