com.github.jamesread.buildid
Owner: James Read
Version numbers suck. Identify bundles of stuff instead.
http://github.com/jamesread/buildid
Sources: http://github.com/jamesread/buildid
Version 1.13.2 (latest)
1.13.2
Created 27 November 2020.
Version numbers suck. Identify bundles of stuff instead.
Using the plugins DSL:
plugins {
id("com.github.jamesread.buildid") version "1.13.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.jamesread.buildid:buildid:1.13.2")
}
}
apply(plugin = "com.github.jamesread.buildid")
Using the plugins DSL:
plugins {
id "com.github.jamesread.buildid" version "1.13.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.jamesread.buildid:buildid:1.13.2"
}
}
apply plugin: "com.github.jamesread.buildid"