In my post A First Look at Building Java with Gradle, I briefly mentioned using Gradleโs โgradle tasksโ command to see the available tasks for a particular Gradle build. In this post, I expand on that brief mention a bit more and look at some related Gradle command-line conveniences. Gradle makes it easy to determine available Gradle tasks for a given project. The next screen snapshot demonstrates using gradle tasks (or gradle :tasks) in the same directory as the simple Gradle build file (build.gradle) I used in my previously mentioned Gradle post. The screen snapshots follow the code listing of build.gradle which is reproduced here for convenience.
Basic Java Application build.gradle
apply plugin: 'java'
Adding --all to gradle tasks (gradle tasks --all) will show even more details (including tasksโ dependencies) as shown in the next screen snapshot.
Something I used to do often when working with an Ant build file new to me was to add a target โshowPropertiesโ that used a series of Ant echo tasks to display the properties used by that build file. Gradle provides essentially this capability out-of-the-box. The next screen snapshot demonstrates use of gradle -q properties to display the properties associated with the Gradle project and tasks in the build.gradle file in the same directory.
๐ gradle_display_properties
Another useful command-line Gradle option is --profile. This can be used in conjunction with running a Gradle command. For example, gradle tasks --profile generates the same standard output as shown above, but also writes build performance statistics to a file with the naming convention profile-YYYY-MM-DD-HH-mm-ss.html in the build/reports/profile subdirectory of the directory from which the build was executed. An example of that generated file is shown next.
The final Gradle command-line option I cover in this post is the โdry runโ option -m (or --dry-run). This option allows one to see the Gradle tasks which are run and the order in which they are run without actually executing those tasks. Because the one-line Gradle build.gradle file used in this post applies the Java plugin, the automatically added Gradle Tasks include compileJava, classes, jar, and javadoc. The following screen snapshot demonstrates running gradle -m jar to see the dry run output that shows the dependent tasks that must be run before โjarโ and the order they must be run (compileJava->processResources->classes->jar). Note โSKIPPEDโ notation indicating that the Gradle tasks are not actually executed.
Chapter 11 (โUsing the Gradle Command-Lineโ) of the Gradle User Guide (PDF) contains additional details regarding use of Gradleโs command-line interface with sections on listing projects, listing tasks, listing project dependencies, listing project properties, and listing the order Gradle tasks are executed.
Thank you!
We will contact you soon.
Dustin MarxDecember 30th, 2013Last Updated: December 30th, 2013

This site uses Akismet to reduce spam. Learn how your comment data is processed.