Mirror von
https://github.com/ViaVersion/ViaVersion.git
synchronisiert 2024-11-03 14:50:30 +01:00
458279d111
This has been tested on the following: - AdoptOpenJDK Java 1.8.0_282 - GraalVM CE 21.0.0 OpenJDK 11.0.10 - AdoptOpenJDK Java 15.0.2 - AdoptOpenJDK Java 16 (also tested with BungeeCord b1556) - Amazon Corretto OpenJDK 16.0.0.36.1 ... with Waterfall b406 on Linux 5.10.28.
13 Zeilen
394 B
Plaintext
13 Zeilen
394 B
Plaintext
dependencies {
|
|
api(project(":java-compat:java-compat-common"))
|
|
api(project(":java-compat:java-compat-8"))
|
|
api(project(":java-compat:java-compat-9"))
|
|
api(project(":java-compat:java-compat-16"))
|
|
}
|
|
|
|
configure<JavaPluginConvention> {
|
|
// This is necessary to allow compilation for Java 8 while still including
|
|
// newer Java versions in the code.
|
|
disableAutoTargetJvm()
|
|
}
|