brainwine/gameserver/build.gradle

39 lines
1 KiB
Groovy

plugins {
id 'java'
}
repositories {
mavenCentral()
}
sourceSets {
main {
resources {
srcDir '../deepworld-config'
exclude 'quests'
exclude 'biomes.yml'
exclude 'daily_challenges.yml'
exclude 'README.md'
}
}
}
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.10.2'
implementation 'io.netty:netty-all:4.1.58.Final'
implementation 'org.mindrot:jbcrypt:0.4'
implementation 'commons-validator:commons-validator:1.7'
implementation 'org.apache.commons:commons-text:1.9'
implementation project(':shared')
}
jar {
archiveBaseName = 'brainwine-gameserver'
}
processResources.includeEmptyDirs = false