Search Gradle plugins

Version 0.0.1 (latest)

Created 19 July 2019.

Plugin for opt Android Project

Using the plugins DSL:

plugins {
  id("top.omooo.plugin") version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.top.omooo.crazyopt.plugin:plugin:0.0.1")
  }
}

apply(plugin = "top.omooo.plugin")

Using the plugins DSL:

plugins {
  id "top.omooo.plugin" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.top.omooo.crazyopt.plugin:plugin:0.0.1"
  }
}

apply plugin: "top.omooo.plugin"

Learn how to apply plugins to subprojects