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
The dependency on the Kotlin Standard Library (stdlib) is automatically added when using the Gradle Kotlin plugin and may conflict with the version provided with the IntelliJ Platform, see: https://jb.gg/intellij-platform-kotlin-stdlib
This is a false positive, as my project does have this line in its gradle.properties file:
kotlin.stdlib.default.dependency=false
This is a gradle subproject, not the root project. I have tested and confirmed that setting kotlin.stdlib.default.dependency=false in a subproject gradle.properties file has the intended effect. However, this code from the plugin is causing a bug:
What happened?
My build gets this warning:
This is a false positive, as my project does have this line in its
gradle.properties
file:This is a gradle subproject, not the root project. I have tested and confirmed that setting
kotlin.stdlib.default.dependency=false
in a subprojectgradle.properties
file has the intended effect. However, this code from the plugin is causing a bug:This property above should return a value of "false", but instead it returns "true". And the reason why is gradle/gradle#24491 and gradle/gradle#23572.
Relevant log output or stack trace
No response
Steps to reproduce
gradle.properties
file withkotlin.stdlib.default.dependency=false
. Make sure this is in the subproject folder.Gradle IntelliJ Plugin version
2.1.0
Gradle version
8.10.2
Operating System
macOS
Link to build, i.e. failing GitHub Action job
No response
The text was updated successfully, but these errors were encountered: