io.github.rschnitk.buildprocess
Owner: Rainer Schnitker
Buildprocess tasks: version extension and bom upload to dependency track service
https://github.com/rschnitk/buildprocess-gradle-plugin
Sources: https://github.com/rschnitk/buildprocess-gradle-plugin
Version 1.0.4 (latest)
1.0.4
Created 27 May 2024.
Buildprocess tasks: version extension and bom upload to dependency track service
Using the plugins DSL:
plugins {
id("io.github.rschnitk.buildprocess") version "1.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.rschnitk:buildprocess-gradle-plugin:1.0.4")
}
}
apply(plugin = "io.github.rschnitk.buildprocess")
Using the plugins DSL:
plugins {
id "io.github.rschnitk.buildprocess" version "1.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.rschnitk:buildprocess-gradle-plugin:1.0.4"
}
}
apply plugin: "io.github.rschnitk.buildprocess"