mirror of
https://github.com/ViaVersion/ViaVersion.git
synced 2024-11-02 16:49:37 +01:00
87d54f1103
* Make use of `TYPESAFE_PROJECT_ACCESSORS` and `VERSION_CATALOGS` Gradle feature previews to clean up build scripts * Bump setup-java action to v2, specify AdoptOpenJDK distribution
12 lines
315 B
Plaintext
12 lines
315 B
Plaintext
dependencies {
|
|
implementation(projects.viaversionCommon)
|
|
implementation(projects.javaCompat)
|
|
compileOnly(libs.bungee)
|
|
}
|
|
|
|
configure<JavaPluginConvention> {
|
|
// This is necessary to allow compilation for Java 8 while still including
|
|
// newer Java versions in the code.
|
|
disableAutoTargetJvm()
|
|
}
|