Search Gradle plugins

Version 1.0.201

Created 07 July 2020.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects