Search Gradle plugins

Version 0.1.1

0.1.1

Created 16 December 2019.

Assists Plugin developers with assigning Gradle project properties to properties in the Plugin Extension.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.redpillanalytics.gradle-properties") version "0.1.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.redpillanalytics:gradle-properties:0.1.1")
      }
    }
    
    apply(plugin = "com.redpillanalytics.gradle-properties")
  • Applying plugins to all subprojects .