com.github.jazzschmidt.properties-template-plugin
所有者: Carsten Schmidt
验证项目属性是否与模板文件一致,以确保需要的属性都存在
https://github.com/jazzschmidt/gradle-properties-template-plugin
来源: https://github.com/jazzschmidt/gradle-properties-template-plugin
版本 1.1.0 (最新)
1.1.0
创建于 2021 年 1 月 26 日。
确保所有必需的项目属性都存在,并且不在 Git 中进行版本控制,以避免意外泄露安全信息。缺失的属性以可读方式列出。由于在长期项目中通常会反复扩展构建,该插件支持使用快速失败方法集成新的项目属性。
使用 plugins DSL
plugins {
id("com.github.jazzschmidt.properties-template-plugin") version "1.1.0"
}
使用 旧版插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.jazzschmidt:gradle_properties_template_plugin:1.1.0")
}
}
apply(plugin = "com.github.jazzschmidt.properties-template-plugin")
使用 plugins DSL
plugins {
id "com.github.jazzschmidt.properties-template-plugin" version "1.1.0"
}
使用 旧版插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.jazzschmidt:gradle_properties_template_plugin:1.1.0"
}
}
apply plugin: "com.github.jazzschmidt.properties-template-plugin"