Search Gradle plugins

Version 1.5.0 (latest)

Created 18 August 2021.

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("name.remal:gradle-plugins:1.5.0")
  }
}

apply(plugin = "name.remal.configuration-extensions")

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "name.remal:gradle-plugins:1.5.0"
  }
}

apply plugin: "name.remal.configuration-extensions"

Learn how to apply plugins to subprojects