Search Gradle plugins

Version 3.2 (latest)

3.2

Created 25 December 2019.

GoConsole Plugin

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.goconsole.plugin") version "3.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.io.goconsole:GoConsolePlugin:3.2")
      }
    }
    
    apply(plugin = "io.goconsole.plugin")
  • Applying plugins to all subprojects .