Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 517 Bytes

gradle-notes.md

File metadata and controls

29 lines (23 loc) · 517 Bytes

Gradle Notes

home: gradle.org

generate a new build.gradle from an existing pom.xml

gradle init --type pom

Add a Manifest file to the jar to make it runnable:

jar {
    manifest {
        attributes 'Main-Class': 'com.foo.bar.MainClass'
    }
}

stop gradle daemon:

gradle -stop

Run a group of tests*:

gradle test --tests '*LocalIT*'