JetBrains / gradle-idea-ext-plugin

Plugin to store IJ settings in gradle script
Apache License 2.0
232 stars 39 forks source link

Support enable/disable annotation processing #94

Closed simomat closed 4 years ago

simomat commented 4 years ago

In our project, we use libraries that depend on java annotation processing. This can be enabled in idea settings, but we would like to make it enabled by default.

The ext plugin allready allows to modify compiler settings but managing annotation processing is not provided yet.

nskvortsov commented 4 years ago

@simomat if java annotation processing is configured properly in Gradle build (using apt plugin or annotationProcessor gradle configuration) it should be picked up automatically by IntelliJ IDEA 2019.3 Please try latest 2019.3 Beta and see, if it works for you.

simomat commented 4 years ago

Yep, annotationProcessor and IDEA 2019.3 worked. Thanks!