PlaguBot/settings.gradle

9 lines
177 B
Groovy
Raw Normal View History

2020-11-12 06:40:57 +00:00
String[] toInclude = [":bot", ":plugin"]
2020-11-12 05:52:09 +00:00
2020-11-08 13:23:01 +00:00
rootProject.name = 'plagubot'
2020-11-12 06:40:57 +00:00
toInclude.each {
include (it)
project(it).name = "${rootProject.name}${it.replace(":", ".")}"
}