Search Gradle plugins

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

Sources: https://github.com/innobead/gogradle.git

Version 1.0.0

Created 04 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.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.pivotstir:gogradle:1.0.0")
  }
}

apply(plugin = "com.pivotstir.gogradle")

Using the plugins DSL:

plugins {
  id "com.pivotstir.gogradle" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.pivotstir:gogradle:1.0.0"
  }
}

apply plugin: "com.pivotstir.gogradle"

Learn how to apply plugins to subprojects