Search Gradle plugins

Version 0.2 (latest)

Created 18 November 2018.

Gop Team plugin

Using the plugins DSL:

plugins {
  id("io.fdev.plugin.gop.gmo") version "0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.fdev.plugin.gop.gmo:GopGmoPlugin:0.2")
  }
}

apply(plugin = "io.fdev.plugin.gop.gmo")

Using the plugins DSL:

plugins {
  id "io.fdev.plugin.gop.gmo" version "0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.fdev.plugin.gop.gmo:GopGmoPlugin:0.2"
  }
}

apply plugin: "io.fdev.plugin.gop.gmo"

Learn how to apply plugins to subprojects