Search Gradle plugins

Version 0.1.1

0.1.1

Created 15 July 2016.

Plugin do build, test and do other stuff with Golang.

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.echocat.golang") version "0.1.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.org.echocat.gradle.plugins:gradle-golang-plugin:0.1.1")
      }
    }
    
    apply(plugin = "org.echocat.golang")
  • Applying plugins to all subprojects .