com.github.ivankohut.git-branch-checks
Owner: Ivan Kohut
Validation of some properties of current git branch
https://github.com/ivankohut/git-branch-checks
Sources: https://github.com/ivankohut/gradle-branch-checks.git
Version 0.0.4 (latest)
0.0.4
Created 07 November 2023.
Validation of some properties of current git branch
Using the plugins DSL:
plugins {
id("com.github.ivankohut.git-branch-checks") version "0.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.ivankohut:git-branch-checks:0.0.4")
}
}
apply(plugin = "com.github.ivankohut.git-branch-checks")
Using the plugins DSL:
plugins {
id "com.github.ivankohut.git-branch-checks" version "0.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.ivankohut:git-branch-checks:0.0.4"
}
}
apply plugin: "com.github.ivankohut.git-branch-checks"