com.github.pomes.props
所有者: Duncan Dickinson
一个用于将属性文件(s)读入项目结构的简单插件
https://github.com/pomes/gradle-plugin-props
源码: https://github.com/pomes/gradle-plugin-pomes
使用 plugins DSL
plugins {
id("com.github.pomes.props") version "0.1.2"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.pomes.gradle-plugins:props:0.1.2")
}
}
apply(plugin = "com.github.pomes.props")
使用 plugins DSL
plugins {
id "com.github.pomes.props" version "0.1.2"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.pomes.gradle-plugins:props:0.1.2"
}
}
apply plugin: "com.github.pomes.props"