Search Gradle plugins

Version 1.1.0 (latest)

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.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.jazzschmidt.properties-template-plugin") version "1.1.0"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.github.jazzschmidt.properties-template-plugin:com.github.jazzschmidt.properties-template-plugin.gradle.plugin:1.1.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.github.jazzschmidt.properties-template-plugin")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.github.jazzschmidt.properties-template-plugin:com.github.jazzschmidt.properties-template-plugin.gradle.plugin:1.1.0")
      }
    }
    
    apply(plugin = "com.github.jazzschmidt.properties-template-plugin")
  • Applying plugins to all subprojects .