com.s390x.gogradle
Owner: Jonathan Springer
Full-featured Build Support for Golang
https://github.com/jonpspri/gogradle
Sources: https://github.com/jonpspri/gogradle
Version 0.10.3 (latest)
Created 21 December 2018.
Full-featured Build Support for Golang
Add this plugin to your build using the plugins DSL:
plugins {
id("com.s390x.gogradle") version "0.10.3"
}
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.s390x.gogradle:com.s390x.gogradle.gradle.plugin:0.10.3") }
It can then be applied in the precompiled script plugin:plugins { id("com.s390x.gogradle") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.s390x.gogradle:com.s390x.gogradle.gradle.plugin:0.10.3") } } apply(plugin = "com.s390x.gogradle")
- Applying plugins to all subprojects .