<#import "_setup.html" as s> <@s.scaffold title="Gradle"> <@s.introduction>

To set up lombok with any build tool, you have to specify that the lombok dependency is required to compile your source code, but does not need to be present when running/testing/jarring/otherwise deploying your code. Generally this is called a 'provided' dependency. This page explains how to integrate lombok with the Gradle build tool.

Lombok is available in maven central, so telling Gradle to download lombok is easy.

<@s.section title="The Lombok Gradle Plugin">

There is a plugin for gradle that we recommend you use; it makes deployment a breeze, and makes it easy to do additional tasks, such as delomboking. The plugin is open source. Read more about the gradle-lombok plugin.

<@s.section title="Gradle without a plugin">

If you don't want to use the plugin, gradle has the built-in compileOnly scope, which can be used to tell gradle to add lombok only during compilation. Your build.gradle will look like:

repositories {
	mavenCentral()
}

dependencies {
	compileOnly 'org.projectlombok:lombok:${version}'
	annotationProcessor 'org.projectlombok:lombok:${version}'
}

Remember that you still have to download lombok.jar (or find it in gradle's caches) and run it as a jarfile, if you wish to program in eclipse. The plugin makes that part easier.

<@s.section title="Android development">

Complete instructions for integrating lombok with your android development is available on our Using lombok for android development page.