I’ve got a project that depends on `dokka-fatjar` ...
# dokka
c
I’ve got a project that depends on
dokka-fatjar
to make a custom output formatter, and I’m having trouble updating to 0.9.18. Intellij doesn’t seem to detect those classes, even though it shows them as available as an External Library. Using Gradle on the command line seems to work fine. Any idea why Intellij can’t find those classes?
k
"Using Gradle on the command line seems to work fine" - does that mean the project complies and the issue is only with Intellij? If so you could try
File -> Invalidate caches and restart
or even deleting the
.idea
directory and reimporting project
c
that’s correct, the Gradle build compiles and tests to completion successfully, it’s just Intellij that’s complaining. I’ve done “Invalidate caches and restart”, but I’ll try deleting
.idea
k
Well this looks like a bug in Intellij or Gradle. Sometimes cleaning Gradle caches or killing all of the Gradle daemons helps
👍 1