Hi, I'm trying to update my project that uses scri...
# scripting
c
Hi, I'm trying to update my project that uses scripting to kotlin 1.4.10, but kotlin-scripting-jsr223-embeddable cannot be found in the repos:
Copy code
Could not find org.jetbrains.kotlin:kotlin-scripting-jsr223-embeddable:1.4.10.
Required by:
    project :asdf:qwer
Is it just delayed so much behind Kotlin main, or should I switch to something else for embedded scripting? I tried using 1.3.72 for scripting and 1.4.10 for the main application, but that doesn't work:
Copy code
java.lang.NoSuchMethodError: 'void org.jetbrains.kotlin.cli.common.repl.GenericReplCompilingEvaluatorBase.<init>(org.jetbrains.kotlin.cli.common.repl.ReplCompiler, org.jetbrains.kotlin.cli.common.repl.ReplEvaluator, org.jetbrains.kotlin.cli.common.repl.ScriptArgsWithTypes, int, kotlin.jvm.internal.DefaultConstructorMarker)'
v
Remove `-embeddable`: https://blog.jetbrains.com/kotlin/2020/07/kotlin-1-4-rc-released/ scroll down to "Artifacts renaming"
c
I can't believe I missed that 🙂 You're an awesome human (vampiric?) being, it works now, thank you!