mirror of
https://github.com/lucko/LuckPerms.git
synced 2025-09-08 21:30:55 +02:00
19 lines
441 B
Groovy
19 lines
441 B
Groovy
repositories {
|
|
maven { url 'https://repo.spongepowered.org/repository/maven-public/' }
|
|
}
|
|
|
|
sourceCompatibility = 21
|
|
targetCompatibility = 21
|
|
|
|
dependencies {
|
|
implementation project(':common')
|
|
|
|
compileOnly('org.spongepowered:spongeapi:12.0.0') {
|
|
exclude(module: 'configurate-core')
|
|
exclude(module: 'configurate-hocon')
|
|
exclude(module: 'configurate-gson')
|
|
exclude(module: 'configurate-yaml')
|
|
}
|
|
}
|
|
|