I'm writing a gradle plugin in java, I need to con...
# announcements
x
I'm writing a gradle plugin in java, I need to consume an extension that's written in Kotlin. https://github.com/tbroyer/gradle-errorprone-plugin/blob/master/src/main/kotlin/net/ltgt/gradle/errorprone/ErrorProneOptions.kt but this class
ErrorProneOptions.class
doesn't appear to be available to me in java. Why? can I remediate?
g
It’s strange. ErrorProneOptions is just a class and should be available on Java
Did you try to compile?
x
yes but... ugh... intellij wasn't reloading the gradle config right... had to do a manual refresh before it would find the damn class
I say that, but then my test blows up with a class not found...