io.github.rkotkiewicz.template
所有者: Radosław Kotkiewicz
此 Gradle 插件创建了填充模板文件的任务。
https://github.com/rkotkiewicz/gradle-template
来源:https://github.com/rkotkiewicz/gradle-template
版本 1.0.0 (最新)
1.0.0
创建于 2023 年 3 月 29 日。
此 Gradle 插件创建了填充模板文件的任务。
使用 plugins DSL
plugins {
id("io.github.rkotkiewicz.template") version "1.0.0"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.rkotkiewicz:template:1.0.0")
}
}
apply(plugin = "io.github.rkotkiewicz.template")
使用 plugins DSL
plugins {
id "io.github.rkotkiewicz.template" version "1.0.0"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.rkotkiewicz:template:1.0.0"
}
}
apply plugin: "io.github.rkotkiewicz.template"