mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2024-11-05 02:19:33 +01:00
17 lines
409 B
Groovy
17 lines
409 B
Groovy
repositories {
|
|
maven { url 'https://repo.spongepowered.org/maven' }
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':common')
|
|
|
|
compileOnly('org.spongepowered:spongeapi:7.0.0') {
|
|
exclude(module: 'configurate-core')
|
|
exclude(module: 'configurate-hocon')
|
|
exclude(module: 'configurate-gson')
|
|
exclude(module: 'configurate-yaml')
|
|
}
|
|
compileOnly 'com.google.guava:guava:21.0'
|
|
}
|
|
|