all.shared.gradle.code-common-tasks
所有者: Gonzalo Müller Bravo
自动应用后端和前端开发的常见Gradle任务集
https://github.com/gmullerb/code-common-tasks/
源代码: https://github.com/gmullerb/code-common-tasks/
使用 插件DSL
plugins {
id("all.shared.gradle.code-common-tasks") version "1.0.1"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.all.shared.gradle.code-common-tasks:code-common-tasks:1.0.1")
}
}
apply(plugin = "all.shared.gradle.code-common-tasks")
使用 插件DSL
plugins {
id "all.shared.gradle.code-common-tasks" version "1.0.1"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.all.shared.gradle.code-common-tasks:code-common-tasks:1.0.1"
}
}
apply plugin: "all.shared.gradle.code-common-tasks"