mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI.git
synced 2024-11-08 17:33:47 +00:00
18 lines
450 B
Groovy
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
|
|
}
|
|
}
|
|
}
|