name.remal.configuration-extensions
Owner: Semyon Levin
Plugin that adds some useful extensions to all configurations. Min Gradle version: 4.5.
https://remal.gitlab.io/gradle-plugins/plugins/name.remal.configuration-extensions/
Sources: https://gitlab.com/remal/gradle-plugins.git
Version 1.2.2
1.2.2
Created 17 January 2021.
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.2.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("name.remal:gradle-plugins:1.2.2")
}
}
apply(plugin = "name.remal.configuration-extensions")
Using the plugins DSL:
plugins {
id "name.remal.configuration-extensions" version "1.2.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "name.remal:gradle-plugins:1.2.2"
}
}
apply plugin: "name.remal.configuration-extensions"