Search Gradle plugins

Version 1.5.0 (latest)

1.5.0

Created 18 August 2021.

Plugin that adds some useful extensions to all configurations. Min Gradle version: 5.0.

Add this plugin to your build using the plugins DSL:

plugins {
  id("name.remal.configuration-extensions") version "1.5.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("name.remal:gradle-plugins:1.5.0")
      }
    }
    
    apply(plugin = "name.remal.configuration-extensions")
  • Applying plugins to all subprojects .