Changed dprecated annotationProcessorGeneratedSourcesDirectory to generatedSourceOutputDirectory.

This commit is contained in:
Erik C. Thauvin 2021-06-18 17:53:31 -07:00
parent b224e1fc99
commit 5dce160cf1
5 changed files with 68 additions and 282 deletions

View file

@ -222,7 +222,7 @@ In order to also incorporate the generated source code into the `source tree`, a
```gradle
tasks.withType(JavaCompile) {
options.annotationProcessorGeneratedSourcesDirectory = file("${projectDir}/src/generated/java")
options.generatedSourceOutputDirectory.set(file("${projectDir}/src/generated/java"))
}
```