com.brambolt.gradle.properties
所有者: Brambolt
一个用于读取共享项目属性的Gradle插件。
https://github.com/brambolt/gradle-properties
来源:https://github.com/brambolt/gradle-properties
使用plugins DSL
plugins {
id("com.brambolt.gradle.properties") version "2022.05.01-7057"
}
使用旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.brambolt.gradle:brambolt-gradle-properties:2022.05.01-7057")
}
}
apply(plugin = "com.brambolt.gradle.properties")
使用plugins DSL
plugins {
id "com.brambolt.gradle.properties" version "2022.05.01-7057"
}
使用旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.brambolt.gradle:brambolt-gradle-properties:2022.05.01-7057"
}
}
apply plugin: "com.brambolt.gradle.properties"