com.brambolt.wrench.staging
Owner: Brambolt
Wrench staging.
https://github.com/brambolt/wrench-staging
Sources: https://github.com/brambolt/wrenches
Using the plugins DSL:
plugins {
id("com.brambolt.wrench.staging") version "2021.10.24-5070"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.brambolt.wrench:brambolt-wrench-staging:2021.10.24-5070")
}
}
apply(plugin = "com.brambolt.wrench.staging")
Using the plugins DSL:
plugins {
id "com.brambolt.wrench.staging" version "2021.10.24-5070"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.brambolt.wrench:brambolt-wrench-staging:2021.10.24-5070"
}
}
apply plugin: "com.brambolt.wrench.staging"