1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2024-09-16 15:46:10 +00:00
tgbotapi/extensions.gradle

18 lines
450 B
Groovy

File templatesFolder = new File("$rootProject.projectDir.absolutePath${File.separatorChar}gradle${File.separatorChar}templates")
Map properties = new HashMap<String, String>()
if (templatesFolder.exists() && templatesFolder.isDirectory()) {
templatesFolder.listFiles().each {
properties[it.name - ".gradle"] = it.absolutePath
}
}
allprojects {
ext {
properties.forEach { k, v ->
it[k] = v
}
}
}