com.brambolt.wrench.properties
所有者: Brambolt
Wrench属性。
https://github.com/brambolt/wrench-properties
来源:https://github.com/brambolt/wrench-properties
使用插件DSL
plugins {
id("com.brambolt.wrench.properties") version "2022.05.01-7057"
}
使用旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.brambolt.wrench:brambolt-wrench-properties:2022.05.01-7057")
}
}
apply(plugin = "com.brambolt.wrench.properties")
使用插件DSL
plugins {
id "com.brambolt.wrench.properties" version "2022.05.01-7057"
}
使用旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.brambolt.wrench:brambolt-wrench-properties:2022.05.01-7057"
}
}
apply plugin: "com.brambolt.wrench.properties"