home: gradle.org
generate a new build.gradle from an existing pom.xml
gradle init --type pomAdd a Manifest file to the jar to make it runnable:
jar {
manifest {
attributes 'Main-Class': 'com.foo.bar.MainClass'
}
}stop gradle daemon:
gradle -stopRun a group of tests*:
gradle test --tests '*LocalIT*'