mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2024-11-04 18:09:37 +01:00
19 lines
447 B
Groovy
19 lines
447 B
Groovy
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'
|
|
}
|
|
|
|
repositories {
|
|
maven {
|
|
name 'sponge-repo'
|
|
url 'https://repo.spongepowered.org/maven'
|
|
}
|
|
}
|