Are there plans to migrate from `com.sun.tools.jav...
# kapt
m
Are there plans to migrate from
com.sun.tools.javac.main.JavaCompiler
(etc.) to
javax.tools.JavaCompiler
(etc.)? The former causes a lot of issues when using Kapt in-process on Java 9+. … oh, the Kotlin Compiler uses it too 😕
f
Tried such migration on restx project and it can be a pain ... I never found some
com.sun.*
equivalents in
javax.tools.*
public package. At the moment I tried this migration (~6-9 monthes ago), Google was not helping much (seems like there isn't a lot of people concerned by annotation processor on Java 9+ outta there 😕 )
😔 1