Created
January 29, 2019 15:46
-
-
Save alexmoleiro/cc07245bbca59b2c61988c3e06d9f44f to your computer and use it in GitHub Desktop.
Gradle 5.0
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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