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.1.5 (latest)

1.1.5

Created 28 June 2019.

A Golang plugin for building, testing, dependency management and popular frameworks (gRPC, Gin, Swagger, ...) supported

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.pivotstir.gogradle") version "1.1.5"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.pivotstir:project:1.1.5")
      }
    }
    
    apply(plugin = "com.pivotstir.gogradle")
  • Applying plugins to all subprojects .