-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NoSuchMethodError in project that uses Kotlinx Benchmark and KGP 2.0 #236
Comments
qurbonzoda
added a commit
that referenced
this issue
Jul 24, 2024
Fixes issue #236. Eventually, the plugin should use the version of Kotlin embedded into Gradle.
woainikk
pushed a commit
that referenced
this issue
Jul 24, 2024
Fixes issue #236. Eventually, the plugin should use the version of Kotlin embedded into Gradle.
woainikk
pushed a commit
that referenced
this issue
Jul 25, 2024
Fixes issue #236. Eventually, the plugin should use the version of Kotlin embedded into Gradle.
woainikk
pushed a commit
that referenced
this issue
Sep 4, 2024
Fixes issue #236. Eventually, the plugin should use the version of Kotlin embedded into Gradle.
woainikk
pushed a commit
that referenced
this issue
Sep 23, 2024
Fixes issue #236. Eventually, the plugin should use the version of Kotlin embedded into Gradle.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
kotlinx-benchmark uses a utility to create a new D8Exec task.
kotlinx-benchmark/plugin/main/src/kotlinx/benchmark/gradle/JsEngineExecTasks.kt
Lines 108 to 113 in 1aefc62
However, the signature of this method changed in KGP 2.0
https://github.com/JetBrains/kotlin/blob/9589486e67c5867b41ed6c58c9614aff39633fe3/libraries/tools/kotlin-gradle-plugin/src/common/kotlin/org/jetbrains/kotlin/gradle/targets/js/d8/D8Exec.kt#L54
compilation: KotlinJsCompilation
changed tocompilation: KotlinJsIrCompilation
This causes a failure during Gradle project configuration.
The text was updated successfully, but these errors were encountered: