name.remal.cross-gradle-versions-checks
Owner: Semyon Levin
Plugin that allows to check plugins against different Gradle versions.
https://remal.gitlab.io/gradle-plugins/plugins/name.remal.cross-gradle-versions-checks/
Sources: https://gitlab.com/remal/name.remal.gradle-plugins.git
Version 1.0.109
1.0.109
Created 16 January 2019.
Plugin that allows to check plugins against different Gradle versions.
Using the plugins DSL:
plugins {
id("name.remal.cross-gradle-versions-checks") version "1.0.109"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("name.remal:gradle-plugins:1.0.109")
}
}
apply(plugin = "name.remal.cross-gradle-versions-checks")
Using the plugins DSL:
plugins {
id "name.remal.cross-gradle-versions-checks" version "1.0.109"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "name.remal:gradle-plugins:1.0.109"
}
}
apply plugin: "name.remal.cross-gradle-versions-checks"