mirror of
https://github.com/DiscordSRV/Ascension.git
synced 2024-10-31 08:32:18 +01:00
23 lines
515 B
Groovy
23 lines
515 B
Groovy
pluginManagement {
|
|
repositories {
|
|
mavenLocal()
|
|
maven { url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' }
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
rootProject.name = 'DiscordSRV2'
|
|
|
|
[
|
|
'common', 'common:server', 'common:proxy',
|
|
'i18n',
|
|
'api',
|
|
'bukkit', 'bukkit:loader',
|
|
'bungee', 'bungee:loader',
|
|
'sponge', 'sponge:loader',
|
|
'velocity'
|
|
].each {
|
|
include it
|
|
findProject(':' + it).name = String.join('-', it.split(':'))
|
|
}
|