mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2024-11-08 20:09:59 +01:00
16 lines
422 B
Groovy
16 lines
422 B
Groovy
repositories {
|
|
maven { url 'https://repo.spongepowered.org/maven' }
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':common')
|
|
implementation project(':sponge:sponge-service')
|
|
|
|
compileOnly('org.spongepowered:spongeapi:6.0.0') {
|
|
exclude(module: 'configurate-core')
|
|
exclude(module: 'configurate-hocon')
|
|
exclude(module: 'configurate-gson')
|
|
exclude(module: 'configurate-yaml')
|
|
}
|
|
}
|