nebula.gradle-git-scm
Owner: Nebula Plugins
Git implementation of gradle-scm-plugin
https://github.com/nebula-plugins/gradle-git-scm-plugin
Version 5.0.0 (latest)
5.0.0
Created 13 September 2021.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
A git implementation of the gradle-scm-plugin
Using the plugins DSL:
plugins {
id("nebula.gradle-git-scm") version "5.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.netflix.nebula:gradle-git-scm-plugin:5.0.0")
}
}
apply(plugin = "nebula.gradle-git-scm")
Using the plugins DSL:
plugins {
id "nebula.gradle-git-scm" version "5.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.netflix.nebula:gradle-git-scm-plugin:5.0.0"
}
}
apply plugin: "nebula.gradle-git-scm"