Skip to content

Instantly share code, notes, and snippets.

@alexmoleiro
Created January 29, 2019 15:46
Show Gist options
  • Save alexmoleiro/cc07245bbca59b2c61988c3e06d9f44f to your computer and use it in GitHub Desktop.
Save alexmoleiro/cc07245bbca59b2c61988c3e06d9f44f to your computer and use it in GitHub Desktop.
Gradle 5.0
annotationProcessor "org.projectlombok:lombok:$lombokVersion"
compileOnly "org.projectlombok:lombok:$lombokVersion"
// unlike testCompile, these configurations do not inherit from their compile counterparts
// so if your tests depend on lombok, make sure you have specified these:
testAnnotationProcessor "org.projectlombok:lombok:$lombokVersion"
testCompileOnly "org.projectlombok:lombok:$lombokVersion"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment