https://kotlinlang.org logo
#detekt
Title
# detekt
d

dead.fish

04/21/2020, 3:46 PM
I have the suspicion that
detektMain
cannot run flawless with
org.gradle.parallel=true
on many modules at once. I get weird class not found exceptions on runtime (with 1.8) that I don't get with the old (legacy)
detekt
task. Has anybody experienced something like this?
Things like e.g.
Copy code
Caused by: java.lang.NoClassDefFoundError: kotlin/ExceptionsKt
        at <http://kotlin.io|kotlin.io>.CloseableKt.closeFinally(Closeable.kt:58)
        at io.gitlab.arturbosch.detekt.cli.runners.Runner.execute(Runner.kt:30)
        at io.gitlab.arturbosch.detekt.invoke.DefaultCliInvoker.invokeCli(DetektInvoker.kt:51)
        ... 89 more
Caused by: java.lang.ClassNotFoundException: kotlin.ExceptionsKt
        ... 92 more
Created a new bugreport for this: https://github.com/detekt/detekt/issues/2629
18 Views