You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using Gradle 8.1, on a fresh checkout of this repository, the command gradle run fails. Other tasks such as gradle build, gradle assemble seem to create the expected artifacts, but when kscript is invoked, all fail with the same error:
Error: Could not find or load main class io.github.kscripting.KscriptKtCaused by: java.lang.ClassNotFoundException: io.github.kscripting.KscriptKt
It's there in the jar all right, but the manifest looks wrong - there's a missing kscript:
Using Gradle 8.1, on a fresh checkout of this repository, the command
gradle run
fails. Other tasks such asgradle build
,gradle assemble
seem to create the expected artifacts, but whenkscript
is invoked, all fail with the same error:It's there in the jar all right, but the manifest looks wrong - there's a missing
kscript
:So, should the main class be
io.github.kscripting.kscript.KscriptKt
, notio.github.kscripting.KscriptKt
, or is something else wrong?The text was updated successfully, but these errors were encountered: