Skip to content

Commit

Permalink
Workaround for IntelliJ bug
Browse files Browse the repository at this point in the history
  • Loading branch information
daniele-athome committed Feb 8, 2025
1 parent 0a5b63e commit a973a2f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ dependencies {
bundledPlugins(providers.gradleProperty("platformBundledPlugins").map { it.split(',') })

// TODO remove after https://youtrack.jetbrains.com/issue/IJPL-177264 has been fixed
bundledModule("intellij.yaml.editing")
if (providers.gradleProperty("platformVersion").get() == "251.20015.29-EAP-SNAPSHOT") {
bundledModule("intellij.yaml.editing")
}

// Plugin Dependencies. Uses `platformPlugins` property from the gradle.properties file for plugin from JetBrains Marketplace.
plugins(providers.gradleProperty("platformPlugins").map { it.split(',') })
Expand Down

0 comments on commit a973a2f

Please sign in to comment.