mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2024-11-19 00:55:28 +01:00
44 lines
1.3 KiB
Groovy
44 lines
1.3 KiB
Groovy
plugins {
|
|
id 'net.kyori.blossom' version '1.3.0'
|
|
id 'java-library'
|
|
}
|
|
|
|
sourceCompatibility = 17
|
|
targetCompatibility = 17
|
|
|
|
dependencies {
|
|
implementation project(':api')
|
|
|
|
api 'org.apache.logging.log4j:log4j-core:2.17.2'
|
|
api 'org.apache.logging.log4j:log4j-slf4j-impl:2.17.2'
|
|
api 'net.minecrell:terminalconsoleappender:1.3.0'
|
|
api 'org.jline:jline-terminal-jansi:3.20.0'
|
|
|
|
api 'com.google.code.gson:gson:2.9.0'
|
|
api 'com.google.guava:guava:31.1-jre'
|
|
|
|
api('net.kyori:adventure-api:4.11.0') {
|
|
exclude(module: 'adventure-bom')
|
|
exclude(module: 'checker-qual')
|
|
exclude(module: 'annotations')
|
|
}
|
|
api('net.kyori:adventure-text-serializer-gson:4.11.0') {
|
|
exclude(module: 'adventure-bom')
|
|
exclude(module: 'adventure-api')
|
|
exclude(module: 'gson')
|
|
}
|
|
api('net.kyori:adventure-text-serializer-legacy:4.11.0') {
|
|
exclude(module: 'adventure-bom')
|
|
exclude(module: 'adventure-api')
|
|
}
|
|
api('net.kyori:adventure-text-serializer-plain:4.11.0') {
|
|
exclude(module: 'adventure-bom')
|
|
exclude(module: 'adventure-api')
|
|
}
|
|
api('net.kyori:ansi:1.0.0-SNAPSHOT')
|
|
}
|
|
|
|
blossom {
|
|
replaceTokenIn('src/main/java/me/lucko/luckperms/standalone/app/LuckPermsApplication.java')
|
|
replaceToken '@version@', project.ext.fullVersion
|
|
} |