mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2024-11-04 18:09:37 +01:00
16 lines
376 B
Groovy
16 lines
376 B
Groovy
rootProject.name = 'luckperms'
|
|
|
|
// set the artifact id for the API to 'luckperms-api'
|
|
include 'api'
|
|
findProject(':api')?.name = 'luckperms-api'
|
|
|
|
include (
|
|
'common',
|
|
'bukkit',
|
|
'bukkit-legacy',
|
|
'bungee',
|
|
'sponge', 'sponge:sponge-service', 'sponge:sponge-service-api6', 'sponge:sponge-service-api7',
|
|
'nukkit',
|
|
'velocity'
|
|
)
|