Does Gradle have an equivalent to the Maven configuration described for the JOOQ type checker annotation processors (https://www.jooq.org/doc/latest/manual/tools/checker-framework/)? The Maven version is:
<dependency>
<groupId>org.jooq</groupId>
<artifactId>jooq-checker</artifactId>
<version>3.10.5</version>
</dependency>
And
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<fork>true</fork>
<annotationProcessors>
<annotationProcessor>org.jooq.checker.SQLDialectChecker</annotationProcessor>
</annotationProcessors>
<compilerArgs>
<arg>-Xbootclasspath/p:1.8</arg>
</compilerArgs>
</configuration>
</plugin>
However, while I can get the compile dependency into Gradle I'm unsure where to put the annotationProcessor
bit. Any help would be greatly appreciated!