# HG changeset patch # User Oleksandr Gavenko # Date 1486646509 -7200 # Node ID e7fe6c24cf5f7d37834e2cb1919dac4576feb527 # Parent 94a39ed90fcaa6ecec3ee0648b1511963f09c6dc About Gradle. diff -r 94a39ed90fca -r e7fe6c24cf5f gradle.rst --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gradle.rst Thu Feb 09 15:21:49 2017 +0200 @@ -0,0 +1,38 @@ + +======== + Gradle +======== +.. contents:: + :local: + +Getting help +============ +:: + + $ gradle --help + +Getting list of supported tasks +=============================== +:: + + $ gradle tasks + +Build sources +============= +:: + + $ gradle compileJava + $ gradle compileTestJava + +Run main class +============== +:: + + $ gradle run + +Stopping server +=============== +:: + + $ gradle --stop +