Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/firsttimeinforever/gradle-run-gutter-icons

This plugin adds run gutter icons for the build.gradle.kts tasks declarations.
https://github.com/firsttimeinforever/gradle-run-gutter-icons

gradle intellij intellij-plugin kotlin plugin

Last synced: 4 months ago
JSON representation

This plugin adds run gutter icons for the build.gradle.kts tasks declarations.

Awesome Lists containing this project

README

        

# ![](src/main/resources/META-INF/pluginIcon_dark.svg) Gradle Run Gutter Icons

![Build](https://github.com/FirstTimeInForever/gradle-run-gutter-icon/workflows/Build/badge.svg)
[![Version](https://img.shields.io/jetbrains/plugin/v/16443-gradle-run-gutter-icons.svg)](https://plugins.jetbrains.com/plugin/16443-gradle-run-gutter-icons)
[![Downloads](https://img.shields.io/jetbrains/plugin/d/16443-gradle-run-gutter-icons.svg)](https://plugins.jetbrains.com/plugin/16443-gradle-run-gutter-icons)

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()`
* `tasks.create()`
* `val task = tasks.register()`
* `val task = tasks.create()`
* `val task by tasks.registering()`
* `val task by tasks.creating()`

[Plugin Screenshot](https://raw.githubusercontent.com/FirstTimeInForever/gradle-run-gutter-icons/c260b52a0f3d1117c0b80bfc76cb555fcc113158/images/plugin-screenshot.png)

## Installation

* Using IDE built-in plugin system:

Settings/Preferences > Plugins > Marketplace > Search for "Gradle Run Gutter Icons >
Install Plugin

* Manually:

Download the [latest release](https://github.com/FirstTimeInForever/gradle-run-gutter-icons/releases/latest) 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](https://github.com/JetBrains/intellij-platform-plugin-template).