tbroyer / gradle-errorprone-plugin

Gradle plugin to use the error-prone compiler for Java
Apache License 2.0
366 stars 32 forks source link

The readme does not give enough information #84

Closed mattfbacon closed 1 year ago

mattfbacon commented 1 year ago

For someone relatively unfamiliar with gradle, I would appreciate a bit more detailed explanation of where to put the snippets described in the readme.

tbroyer commented 1 year ago

All the snippets are "top-level" so, besides the plugins { … } block and import statement that need to appear at the top, you can copy/paste them right at the end of your build script.

I'd highly suggest learning Gradle a bit more though (their doc is great) to grasp what each snippet is doing so you can configure further.

Enjoy!