Initial commit

This commit is contained in:
2026-04-05 17:17:46 -03:00
commit 2293dc29fb
33 changed files with 1644 additions and 0 deletions

29
server/build.gradle Normal file
View File

@@ -0,0 +1,29 @@
plugins {
id 'java'
id 'application'
}
group = 'io.github.eldek0'
version = "$projectVersion"
repositories {
mavenCentral()
mavenLocal()
maven { url = 'https://jitpack.io' }
}
dependencies {
implementation project(':shared')
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}
application {
mainClass = 'io.github.eldek0.GameServer'
}
tasks.test {
useJUnitPlatform()
}