iseki
07/31/2020, 3:42 PMkapt{ annotationProcessor("foo.bar.Aprocessor") }
. The gradle show me that Can't find annotation processor.
Before that, I use kapt/compileOnly("com.google.auto.service:auto-service:1.0-rc7")
in the processor build file.
And use kapt/compileOnly(project("codegen", "default"))
in the parent project (which use the annotation in fact.)
Thank you for your help.Foso
07/31/2020, 4:05 PMiseki
07/31/2020, 4:09 PMSupplied String module notation 'space.iseki.codegen4vertx.Codegen' is invalid. Example notations: 'org.gradle:gradle-core:2.2', 'org.mockito:mockito-core:1.9.5:ja
vadoc'.
When I use kapt("space.iseki.codegen4vertx.Codegen")
compile
compileOnly implementation
... But it not works also. The kapt said it can't find the annotation processor...Foso
07/31/2020, 4:17 PMiseki
07/31/2020, 4:18 PMinclude("codegen")
Foso
07/31/2020, 4:25 PMiseki
07/31/2020, 4:30 PMFoso
07/31/2020, 4:36 PMiseki
07/31/2020, 4:39 PMapp
as the parent module1.4.0-rc
@AutoService(AbstractProcessor::class)
instead of @AutoService(Processor::class)
😫