com.github.y17920.plugin
Owner: y17920
upload apk to www.pgyer.com,360jiagu
https://github.com/y17920/gradle-plugin
Sources: https://github.com/y17920/gradle-plugin
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"