com.github.mkep-dev.dependency-track-bom-publish
Owner: Markus
See github repository.
https://github.com/mkep-dev/dependency-track-bom-publish-gradle
Sources: https://github.com/mkep-dev/dependency-track-bom-publish-gradle
Version 0.1.3-aplha (latest)
0.1.3-aplha
Created 26 January 2023.
See github repository.
Using the plugins DSL:
plugins {
id("com.github.mkep-dev.dependency-track-bom-publish") version "0.1.3-aplha"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.mkep-dev:dependencyTrack-bom-publish-gradle-plugin:0.1.3-aplha")
}
}
apply(plugin = "com.github.mkep-dev.dependency-track-bom-publish")
Using the plugins DSL:
plugins {
id "com.github.mkep-dev.dependency-track-bom-publish" version "0.1.3-aplha"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.mkep-dev:dependencyTrack-bom-publish-gradle-plugin:0.1.3-aplha"
}
}
apply plugin: "com.github.mkep-dev.dependency-track-bom-publish"