mirror of
https://github.com/InsanusMokrassar/PlaguBot.git
synced 2024-11-10 18:03:47 +00:00
9 lines
177 B
Groovy
9 lines
177 B
Groovy
String[] toInclude = [":bot", ":plugin"]
|
|
|
|
rootProject.name = 'plagubot'
|
|
|
|
toInclude.each {
|
|
include (it)
|
|
project(it).name = "${rootProject.name}${it.replace(":", ".")}"
|
|
}
|