com.osacky.tagger
Owner: Nelson Osacky
An easy way to tag build scans for Gradle plugin authors.
https://github.com/runningcode/tagger
Sources: https://github.com/runningcode/tagger
Version 0.2 (latest)
0.2
Created 03 August 2021.
An easy way to tag build scans for Gradle plugin authors.
Using the plugins DSL:
plugins {
id("com.osacky.tagger") version "0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.osacky.tagger:tagger-plugin:0.2")
}
}
apply(plugin = "com.osacky.tagger")
Using the plugins DSL:
plugins {
id "com.osacky.tagger" version "0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.osacky.tagger:tagger-plugin:0.2"
}
}
apply plugin: "com.osacky.tagger"