1
0
Fork 0
mirror of https://github.com/PaperMC/Paper.git synced 2025-04-05 22:05:20 +02:00

[ci skip] Make compilation logs actually readable ()

* [ci skip] Make compilation logs actually readable

* Specifically disable deprecation and removal warnings instead
This commit is contained in:
Nassim Jahnke 2025-03-17 10:53:56 +01:00 committed by GitHub
parent 2d3a1385f1
commit aaaeb4e1e6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -38,6 +38,7 @@ subprojects {
options.encoding = Charsets.UTF_8.name()
options.release = 21
options.isFork = true
options.compilerArgs.addAll(listOf("-Xlint:-deprecation", "-Xlint:-removal"))
}
tasks.withType<Javadoc> {
options.encoding = Charsets.UTF_8.name()