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'
我的意思是没有声明新功能。或者任何其他建议如何使它更优雅?