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.0-SNAPSHOT
1.0-SNAPSHOT
Created 05 August 2020.
Validates project properties against a template file to ensure required ones are present
Using the plugins DSL:
plugins {
id("com.github.jazzschmidt.properties-template-plugin") version "1.0-SNAPSHOT"
}
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.0-SNAPSHOT")
}
}
apply(plugin = "com.github.jazzschmidt.properties-template-plugin")
Using the plugins DSL:
plugins {
id "com.github.jazzschmidt.properties-template-plugin" version "1.0-SNAPSHOT"
}
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.0-SNAPSHOT"
}
}
apply plugin: "com.github.jazzschmidt.properties-template-plugin"