started adding server initializer

This commit is contained in:
2024-09-27 00:09:34 +02:00
parent 8607165bfa
commit d7bc5f037f
15 changed files with 668 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
plugins {
id("java")
}
group = "org.example"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
testImplementation(platform("org.junit:junit-bom:5.10.0"))
testImplementation("org.junit.jupiter:junit-jupiter")
implementation("org.apache.logging.log4j:log4j-api:2.24.0")
implementation("org.apache.logging.log4j:log4j-core:2.24.0")
}