com.fussionlabs.gradle.go-plugin
Owner: Daniel Mancilla
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)
0.7.0
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.
Using the plugins DSL:
plugins {
id("com.fussionlabs.gradle.go-plugin") version "0.7.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.fussionlabs.gradle:go-plugin:0.7.0")
}
}
apply(plugin = "com.fussionlabs.gradle.go-plugin")
Using the plugins DSL:
plugins {
id "com.fussionlabs.gradle.go-plugin" version "0.7.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.fussionlabs.gradle:go-plugin:0.7.0"
}
}
apply plugin: "com.fussionlabs.gradle.go-plugin"