finally finished the server

This commit is contained in:
2024-09-28 05:39:15 +02:00
parent b6b3591080
commit ab06ba0a76
3 changed files with 295 additions and 78 deletions

View File

@@ -1,19 +1,41 @@
plugins {
id("java")
id("com.github.johnrengelman.shadow") version "7.1.2"
}
group = "org.example"
version = "1.0-SNAPSHOT"
group = "com.vaporvee"
version = "1.0"
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")
implementation("com.google.code.gson:gson:2.8.8")
testImplementation(platform("org.junit:junit-bom:5.10.0"))
testImplementation("org.junit.jupiter:junit-jupiter")
}
tasks {
jar {
manifest {
attributes(
"Implementation-Title" to project.name,
"Implementation-Version" to project.version,
"Main-Class" to "com.vaporvee.boundlessutil.BoundlessServer"
)
}
}
shadowJar {
archiveFileName.set("boundless-server.jar")
manifest {
attributes(
"Main-Class" to "com.vaporvee.boundlessutil.BoundlessServer"
)
}
}
}