help : requires missing "com.intellij.modules.go"
已回答
Right now I am developing a GoLand plugin; I got an error "requires missing "com.intellij.modules.go" when I run gradle build ,
here is part of my gradle.properties
pluginVersion = 0.5.1
pluginSinceBuild = 193
pluginUntilBuild = 202.*
platformType = IU
platformVersion = 2019.3.3
platformDownloadSources = true
here is part of my plugin.xml
<depends>com.intellij.modules.go</depends>
<!-- Requires the platform module to distinguish it from a legacy plugin -->
<depends>com.intellij.modules.platform</depends>
<extensions defaultExtensionNs="com.bstera">
<!-- Add your extensions here -->
</extensions>
请先登录再写评论。
Please follow the GoLand Plugin Development DevKit Guide. Make sure that you've specified a dependency to the Go plugin in your Gradle configuration.
Hi Jakub Chrzanowski
thank you very much, I can not find any clue about which gradle dependency should be add from the page. can you kindly put out?
https://jetbrains.org/intellij/sdk/docs/products/goland.html
Check the third row of the table.