com.brambolt.gradle.build.staging
拥有者: Brambolt
Brambolt 预发布构建。
https://github.com/brambolt/gradle-build-staging
源代码: https://github.com/brambolt/gradle-build-staging
使用插件DSL
plugins {
id("com.brambolt.gradle.build.staging") version "2022.05.01-7057"
}
使用遗留插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.brambolt.gradle:brambolt-gradle-build-staging:2022.05.01-7057")
}
}
apply(plugin = "com.brambolt.gradle.build.staging")
使用插件DSL
plugins {
id "com.brambolt.gradle.build.staging" version "2022.05.01-7057"
}
使用遗留插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.brambolt.gradle:brambolt-gradle-build-staging:2022.05.01-7057"
}
}
apply plugin: "com.brambolt.gradle.build.staging"