io.github.flank.gradle.simple-flank
所有者: Cristian Garcia
simple-flank 是一个专注于简化设置的Gradle插件。
https://github.com/Flank/simple-flank
源代码: https://github.com/Flank/simple-flank
使用 plugins DSL
plugins {
id("io.github.flank.gradle.simple-flank") version "0.4.0"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.flank.gradle:simple-flank:0.4.0")
}
}
apply(plugin = "io.github.flank.gradle.simple-flank")
使用 plugins DSL
plugins {
id "io.github.flank.gradle.simple-flank" version "0.4.0"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.flank.gradle:simple-flank:0.4.0"
}
}
apply plugin: "io.github.flank.gradle.simple-flank"