如何在Gradle中读取外部属性文件

时间:2015-12-01 10:37:39

标签: gradle

Gradle是否有一些内置工具允许我编写以下内容:

def loadProperties(String sourceFileName) {
    def config = new Properties()
    def propFile = new File(sourceFileName)
    if (propFile.canRead()) {
        config.load(new FileInputStream(propFile))
        for (Map.Entry property in config) {
            ext[property.key] = property.value;
        }
    }
}

loadProperties 'src/main/resources/jdbc.properties'  

我的意思是没有声明新功能。或者任何其他建议如何使它更优雅?

0 个答案:

没有答案