Search Gradle plugins

Version 1.0.0

Created 08 August 2020.

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.0.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.0.0")
  }
}

apply(plugin = "com.github.jazzschmidt.properties-template-plugin")

Using the plugins DSL:

plugins {
  id "com.github.jazzschmidt.properties-template-plugin" version "1.0.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.0.0"
  }
}

apply plugin: "com.github.jazzschmidt.properties-template-plugin"

Learn how to apply plugins to subprojects