This simple plugin adds run gutter icons for the build.gradle.kts tasks declarations. Then clicked, it executes declared gradle task just like Execute Gradle Task action.
Currently, it only supports these types of task declaration:
tasks.register(<taskName>)tasks.create(<taskName>)val task = tasks.register(<taskName>)val task = tasks.create(<taskName>)val task by tasks.registering(<taskName>)val task by tasks.creating(<taskName>)
-
Using IDE built-in plugin system:
Settings/Preferences > Plugins > Marketplace > Search for "Gradle Run Gutter Icons > Install Plugin
-
Manually:
Download the latest release and install it manually using Settings/Preferences > Plugins > ⚙️ > Install plugin from disk...
Gradle Run Gutter Icons plugin is based on the IntelliJ Platform Plugin Template.