Search Gradle plugins

Version 0.1

Created 17 November 2018.

Gop Team plugin

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects