Search Gradle plugins

com.fussionlabs.gradle.go-plugin

The `Go-Plugin` is a Gradle plugin for Go projects. This plugin does not intend to replace Go's native dependency management system, instead this plugin focuses on replacing traditional task orchestrators like Make, offering a more versatile and reusable approach for task automation.

https://github.com/dm0275/go-plugin

Sources: https://github.com/dm0275/go-plugin.git

Version 0.7.0 (latest)

Created 08 May 2024.

The `Go-Plugin` is a Gradle plugin for Go projects. This plugin does not intend to replace Go's native dependency management system, instead this plugin focuses on replacing traditional task orchestrators like Make, offering a more versatile and reusable approach for task automation.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.fussionlabs.gradle.go-plugin") version "0.7.0"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.fussionlabs.gradle.go-plugin:com.fussionlabs.gradle.go-plugin.gradle.plugin:0.7.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.fussionlabs.gradle.go-plugin")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.fussionlabs.gradle.go-plugin:com.fussionlabs.gradle.go-plugin.gradle.plugin:0.7.0")
      }
    }
    
    apply(plugin = "com.fussionlabs.gradle.go-plugin")
  • Applying plugins to all subprojects .