Skip to main content

Gradle

Geoffrey Hunter
mbedded.ninja Author

Overview

Gradle is an open-source build automation system. It is primarily targeted towards languages running on the JVM (Java Virtual Machine).

The Gradle logo.

One of it's big advantages over Maven is it's use of a domain-specific language (DSL) rather than XML to specify the project configuration and build steps.

The Java Plugin

The Java plugin is probably one of the most commonly used plugins. To use the plugin, add the following to your build script:

apply plugin: 'java'

The Java plugin assumes the same traditional layout of files that Maven did:

DirectoryMeaning
src/main/javaProduction Java source
src/main/resourcesProduction resources
src/test/javaTest Java source
src/test/resourcesTest resources
src/sourceSet/javaJava source for the given source set
src/sourceSet/resourcesResources for the given source set

These default file locations can be changed if needed (however, it is recommended to use the default configuration unless you have good reason not to).