Skip to content

Commit

Permalink
Add a workaround for loading of the intellij-toml plugin
Browse files Browse the repository at this point in the history
The current way (since intellij-rust#2213) of loading the intellij-toml plugin
from build.gradle.kts requires a fix for
JetBrains/intellij-platform-gradle-plugin#238.
But the current latest stable version 0.2.18 of gradle-intellij-plugin
does not yet contain this fix.
This causes toml support to not work during development.

Go back to the old way of loading the intellij-toml plugin
until a bugfix version of intellij-toml containing the fix is released.

See JetBrains/intellij-platform-gradle-plugin#258 for more details.
  • Loading branch information
kumbayo committed Feb 26, 2018
1 parent b3c73f4 commit a9f9428
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ project(":") {
intellij {
pluginName = "intellij-rust"
// alternativeIdePath = "deps/clion-$clionVersion"
setPlugins(project(":intellij-toml"))
setPlugins("org.toml.lang:0.2.0.12")
}

repositories {
Expand Down

0 comments on commit a9f9428

Please sign in to comment.