Optimize and improve VelocityCore size

Improve steamwar.devserver.gradle to not upload anything that is up to date!
This commit is contained in:
2025-07-02 11:17:55 +02:00
parent 8677d59cce
commit 6efbda669e
6 changed files with 39 additions and 18 deletions
+2 -10
View File
@@ -51,18 +51,10 @@ dependencies {
compileOnly(libs.viavelocity)
compileOnly(project(":VelocityCore:Persistent", "default"))
compileOnly(project(":VelocityCore:DiscordDependency", "default"))
compileOnly(project(":VelocityCore:Dependencies", "default"))
implementation(project(":CommonCore"))
implementation(project(":CommandFramework"))
implementation(libs.sqlite)
implementation(libs.mysql)
implementation(libs.msgpack)
implementation(libs.apolloprotos)
implementation(libs.nbt)
}
tasks.register<DevServer>("DevVelocity") {
@@ -70,6 +62,6 @@ tasks.register<DevServer>("DevVelocity") {
description = "Run a Dev Velocity"
dependsOn(":VelocityCore:shadowJar")
dependsOn(":VelocityCore:Persistent:jar")
dependsOn(":VelocityCore:DiscordDependency:jar")
dependsOn(":VelocityCore:Dependencies:shadowJar")
template = "DevVelocity"
}