quick-e2e: Implement PaperDownloadService and configuration management for server file downloads

This commit is contained in:
Oliver
2025-03-16 17:50:00 +01:00
parent b2fc904441
commit 4c4e617bf5
6 changed files with 105 additions and 3 deletions

View File

@@ -8,7 +8,7 @@ group = "de.oliver"
description = "Tool to setup a complete environment for testing"
java {
toolchain.languageVersion.set(JavaLanguageVersion.of(21))
toolchain.languageVersion.set(JavaLanguageVersion.of(23))
}
repositories {
@@ -42,7 +42,7 @@ tasks {
// Set the release flag. This configures what version bytecode the compiler will emit, as well as what JDK APIs are usable.
// See https://openjdk.java.net/jeps/247 for more information.
options.release.set(21)
options.release.set(23)
}
java {