IntelliJ Platform Plugin SDK Help

GoLand Plugin Development

GoLand is an IntelliJ Platform-based product. Plugin projects for GoLand can be developed using IntelliJ IDEA with the Gradle IntelliJ Plugin.

Configuring Plugin Projects Targeting GoLand

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.

intellij { version.set("2020.3") type.set("GO") // required if Go language API is needed: plugins.set(listOf("org.jetbrains.plugins.go")) }
intellij { version = '2020.3' type = 'GO' // required if Go language API is needed: plugins = ['org.jetbrains.plugins.go'] }

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 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

intellij.type

IU for IntelliJ IDEA Ultimate. The Go plugin isn't compatible with IntelliJ IDEA Community Edition.

intellij.version

Set to the same IU BRANCH.BUILD as the GoLand target version, e.g. 193.5233.102.

intellij.plugins

org.jetbrains.plugins.go:193.5233.102.83 for the Go plugin.

See below for Go plugin version information.

runIde.ideDir

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 and Module Dependencies

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+) or com.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 the 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:

Last modified: 15 April 2024