GoLand Plugin Development
GoLand is an IntelliJ Platform-based product. Plugin projects for GoLand can be developed using IntelliJ IDEA.
GoLand Plugin Setup
Gradle Build Script
IntelliJ Platform Gradle Plugin (2.x)
Define a dependency using goland()
, see Versions link on top of this page for all available versions. See Local IntelliJ Platform IDE Instance for using a local installation.
A dependency on the bundled org.jetbrains.plugins.go
plugin must be added using the bundledPlugin()
helper.
Minimum build.gradle.kts setup:
Gradle IntelliJ Plugin (1.x)
The configuration of targeting GoLand IDE follows the methods described in Configuring Plugin Projects Using a Product-Specific Attribute.
Starting with 2020.2, it's possible to configure GO
for intellij.type
in the Gradle build script. If you need to use Go language APIs, specifying the GO
platform type is not enough - it is required to add a dependency to the org.jetbrains.plugins.go
plugin.
The configuration of GoLand plugin projects follows the methods described in Configuring Plugin Projects using the IntelliJ IDEA Product Attribute, and Configuring the plugin.xml File.
The table below summarizes the Gradle IntelliJ Plugin (1.x) attributes to set in the plugin project's Gradle build script. Click on an entry in the table's Attribute column to go to the documentation about that attribute. To see how these attributes appear in a similar Gradle build script for PhpStorm, see Configuring Gradle Build Script Using the IntelliJ IDEA Product Attribute.
The Go plugin version is explicitly declared because it isn't bundled with IntelliJ IDEA Ultimate Edition. Select a version of the Go plugin compatible with the IntelliJ Idea Ultimate version.
Gradle IntelliJ Plugin Attribute | Attribute Value |
---|---|
| |
Set to the same | |
See below for Go plugin version information. | |
Path to locally installed target version of GoLand. For example, on macOS: /Users/$USERNAME$/Library/Application Support/JetBrains/Toolbox/apps/Goland/ch-0/193.5233.112/GoLand.app/Contents. |
plugin.xml
Depending on plugin's requirements, the following <depends>
entries are needed in the plugin.xml file:
com.intellij.modules.platform
- Always required. See Configuring the plugin.xml File for details.org.jetbrains.plugins.go
- Required if the Go plugin APIs are used in the plugin.com.intellij.modules.goland
(2020.2+) orcom.intellij.modules.go
(pre-2020.2) - Required if the plugin targets GoLand IDE only. The plugin will not be loaded in other IDEs, even if the Go plugin is present.
Targeting IDEs Other Than GoLand
Depending on com.intellij.modules.goland
allows a plugin to be installed in the GoLand IDE only. However, the Go plugin can be installed in IntelliJ IDEA Ultimate and potentially other IDEs. To make the plugin compatible with GoLand and other IDEs supporting the Go language consider depending on:
org.jetbrains.plugins.go
- The plugin will be loaded only when the Go plugin is actually installed in the running IDE.com.intellij.modules.go-capable
- The plugin will be loaded in IDEs that are capable of installing the Go plugin. Note that the Go plugin doesn't have to be actually installed when this module is present.
Available GoLand APIs
Use the Exploring APIs as a Consumer process to identify the library intellij-go-$version$.jar, where $version$
corresponds to the version of the Go plugin. Test your plugin with any version of GoLand you intend to support.
GoLand Test Framework
Please see this issue for required additional dependency setup.
Open Source Plugins for GoLand
When learning new APIs, it is helpful to have some representative projects for reference: