com.pivotstir.gogradle
Owner:
David Ko
A Golang plugin for building, testing, dependency management and popular frameworks (gRPC, Gin, Swagger, ...) supported
https://github.com/innobead/gogradle
Version 1.0.12
Created 21 September 2018.
A Golang plugin for building, testing, dependency management and popular frameworks (gRPC, Gin, Swagger, ...) supported
Using the plugins DSL:
plugins {
id("com.pivotstir.gogradle") version "1.0.12"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.pivotstir:gogradle:1.0.12")
}
}
apply(plugin = "com.pivotstir.gogradle")
Using the plugins DSL:
plugins {
id "com.pivotstir.gogradle" version "1.0.12"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.pivotstir:gogradle:1.0.12"
}
}
apply plugin: "com.pivotstir.gogradle"