1
0
Fork 0
mirror of https://github.com/PaperMC/Paper.git synced 2025-02-19 11:39:50 +01:00

Always fork jvm for compile, even when using the Gradle runtime jvm

Fixes spurious build failures from OOM
This commit is contained in:
Jason Penilla 2024-12-03 20:42:36 -07:00
parent 8aed12873b
commit 39ab1fb456

View file

@ -31,6 +31,7 @@ subprojects {
tasks.withType<JavaCompile> {
options.encoding = Charsets.UTF_8.name()
options.release = 21
options.isFork = true
}
tasks.withType<Javadoc> {
options.encoding = Charsets.UTF_8.name()