LuckPerms/sponge/sponge-service-api8/build.gradle

16 lines
441 B
Groovy
Raw Normal View History

2019-01-07 22:25:11 +01:00
repositories {
2022-02-07 22:10:01 +01:00
maven { url 'https://repo.spongepowered.org/repository/maven-public/' }
2019-01-07 22:25:11 +01:00
}
2018-08-10 21:39:29 +02:00
dependencies {
2021-08-20 19:16:39 +02:00
implementation project(':common')
implementation project(':sponge:sponge-service')
2018-08-10 21:39:29 +02:00
2022-02-07 22:10:01 +01:00
compileOnly('org.spongepowered:spongeapi:8.0.0') {
2018-08-10 21:39:29 +02:00
exclude(module: 'configurate-core')
exclude(module: 'configurate-hocon')
exclude(module: 'configurate-gson')
exclude(module: 'configurate-yaml')
}
}