ds2.gradle.plugins.golang
Owner:
Lexxy
Another Gradle plugin to work with Golang.
https://bitbucket.org/lexxy23/gradle-go-plugin
Sources: https://bitbucket.org/lexxy23/gradle-go-plugin
Version 0.1.8 (latest)
Created 19 December 2017.
Another Gradle plugin to work with Golang.
Add this plugin to your build using the plugins DSL:
plugins {
id("ds2.gradle.plugins.golang") version "0.1.8"
}
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("ds2.gradle.plugins.golang:ds2.gradle.plugins.golang.gradle.plugin:0.1.8") }
It can then be applied in the precompiled script plugin:plugins { id("ds2.gradle.plugins.golang") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("ds2.gradle.plugins.golang:ds2.gradle.plugins.golang.gradle.plugin:0.1.8") } } apply(plugin = "ds2.gradle.plugins.golang")
- Applying plugins to all subprojects .