com.github.jazzschmidt.properties-template-plugin
Owner: Carsten Schmidt
Validates project properties against a template file to ensure required ones are present
https://github.com/jazzschmidt/gradle-properties-template-plugin
Sources: https://github.com/jazzschmidt/gradle-properties-template-plugin
Version 1.1.0 (latest)
1.1.0
Created 26 January 2021.
Ensures that all required project properties are present and not versioned under Git
to prevent accidental security leaks. Missing properties are listed in a human-readable
manner.
Since the build is usually extended over and over again in long-term projects, this
plugin supports integrating new project properties with a fail-fast approach.
Using the plugins DSL:
plugins {
id("com.github.jazzschmidt.properties-template-plugin") version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.jazzschmidt:gradle_properties_template_plugin:1.1.0")
}
}
apply(plugin = "com.github.jazzschmidt.properties-template-plugin")
Using the plugins DSL:
plugins {
id "com.github.jazzschmidt.properties-template-plugin" version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.jazzschmidt:gradle_properties_template_plugin:1.1.0"
}
}
apply plugin: "com.github.jazzschmidt.properties-template-plugin"