mirror of
https://github.com/array-in-a-matrix/brainwine.git
synced 2025-04-02 11:11:58 -04:00
24 lines
No EOL
650 B
Groovy
24 lines
No EOL
650 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
repositories {
|
|
jcenter()
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.apache.logging.log4j:log4j-api:2.15.0'
|
|
implementation 'org.apache.logging.log4j:log4j-core:2.15.0'
|
|
implementation 'com.fasterxml.jackson.core:jackson-databind:2.12.4'
|
|
implementation 'org.msgpack:jackson-dataformat-msgpack:0.9.0'
|
|
implementation 'org.yaml:snakeyaml:1.27'
|
|
implementation 'org.reflections:reflections:0.9.12'
|
|
implementation 'io.netty:netty-all:4.1.58.Final'
|
|
implementation 'org.mindrot:jbcrypt:0.4'
|
|
implementation project(':shared')
|
|
}
|
|
|
|
jar {
|
|
archiveBaseName = 'brainwine-gameserver'
|
|
} |