Gradle项目:java.lang.NoClassDefFoundError:kotlinjvminternalIntrinsics

Gradle项目:java.lang.NoClassDefFoundError:kotlinjvminternalIntrinsics,第1张

Gradle项目:java.lang.NoClassDefFoundError:kotlin / jvm / internal / Intrinsics

将所有项目文件添加到jar中对我来说解决了这个问题。我将以下行添加到我的

build.gradle

jar {    manifest {        attributes ...    }    // This line of pre recursively collects and copies all of a project's files    // and adds them to the JAR itself. One can extend this task, to skip certain    // files or particular types at will    from { configurations.compileClasspath.collect { it.isDirectory() ? it : zipTree(it) } }}

更新
:改变

configurations.compile.collect
configurations.compileClasspath.collect
根据本下面的答案。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5429227.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-11
下一篇 2022-12-11

发表评论

登录后才能评论

评论列表(0条)

保存