Search Gradle plugins

Version 1.3

Created 01 June 2021.

upload apk to www.pgyer.com,360jiagu

Using the plugins DSL:

plugins {
  id("com.github.y17920.plugin") version "1.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.y17920.plugin:plugin:1.3")
  }
}

apply(plugin = "com.github.y17920.plugin")

Using the plugins DSL:

plugins {
  id "com.github.y17920.plugin" version "1.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.y17920.plugin:plugin:1.3"
  }
}

apply plugin: "com.github.y17920.plugin"

Learn how to apply plugins to subprojects