io.heapy.gradle.properties
所有者: Ruslan Ibragimov
该插件曾用于以开发为目的覆盖gradle.properties以使用local.properties。同时将版本外部化到build.properties文件中,以保持gradle.properties的整洁。
https://github.com/Heapy/heapy-properties-gradle-plugin
来源: https://github.com/Heapy/heapy-properties-gradle-plugin
版本 1.1.2(最新版本)
1.1.2
创建于 2020年9月18日。
该插件曾用于以开发为目的覆盖gradle.properties以使用local.properties。同时将版本外部化到build.properties文件中,以保持gradle.properties的整洁。
使用 plugins DSL
plugins {
id("io.heapy.gradle.properties") version "1.1.2"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.io.heapy.gradle.properties:heapy-properties-gradle-plugin:1.1.2")
}
}
apply(plugin = "io.heapy.gradle.properties")
使用 plugins DSL
plugins {
id "io.heapy.gradle.properties" version "1.1.2"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.io.heapy.gradle.properties:heapy-properties-gradle-plugin:1.1.2"
}
}
apply plugin: "io.heapy.gradle.properties"