Nezteb
04/25/2019, 4:20 PMError: A JNI error has occurred, please check your installation and try again
Exception in thread "main" java.lang.NoClassDefFoundError: kotlin/TypeCastException
A snippet of my `build.gradle.kts`:
jar {
archiveName = "myJar.jar"
manifest {
attributes(
"Class-Path" to configurations.compile.get().joinToString(" ") { it.name },
"Main-Class" to "com.mycompany.MainKt"
)
}
}
I assume my classpath is off somehow