de.flachnetz.golang-gradle-plugin
Owner: Martin Jöhren
Override description for this plugin
https://github.com/flachnetz/golang-gradle-plugin
Sources: https://github.com/flachnetz/golang-gradle-plugin.git
Version 0.1.49 (latest)
0.1.49
Created 11 January 2018.
Golang Gradle Plugin - Simple gradle plugin to compile go sources. It sets up a custom `GOPATH` and installs dependencies via glide or go get.
Using the plugins DSL:
plugins {
id("de.flachnetz.golang-gradle-plugin") version "0.1.49"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("de.flachnetz:golang-gradle-plugin:0.1.49")
}
}
apply(plugin = "de.flachnetz.golang-gradle-plugin")
Using the plugins DSL:
plugins {
id "de.flachnetz.golang-gradle-plugin" version "0.1.49"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "de.flachnetz:golang-gradle-plugin:0.1.49"
}
}
apply plugin: "de.flachnetz.golang-gradle-plugin"