I just tried out kotlin 1.1.1 on an existing Java ...
# announcements
r
I just tried out kotlin 1.1.1 on an existing Java project and it appears to be consuming all annotations from the Java source code. The result is my annotation processor is always passed an empty set ->
public boolean AbstractProcessor#process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv)
. Is this intentional? We didn't experience this with kotlin 1.0.x. I can workaround it by adding the kotlin-kapt gradle plugin and kapt dependencies.