mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2024-11-13 06:14:25 +01:00
17 lines
416 B
Groovy
17 lines
416 B
Groovy
repositories {
|
|
maven { url 'https://repo.spongepowered.org/maven' }
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':common')
|
|
|
|
compileOnly('org.spongepowered:spongeapi:7.2.0') {
|
|
exclude(module: 'configurate-core')
|
|
exclude(module: 'configurate-hocon')
|
|
exclude(module: 'configurate-gson')
|
|
exclude(module: 'configurate-yaml')
|
|
}
|
|
compileOnly 'com.google.guava:guava:21.0'
|
|
}
|
|
|