[ci skip] Make compilation logs actually readable (#12276)

* [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.encoding = Charsets.UTF_8.name()
options.release = 21 options.release = 21
options.isFork = true options.isFork = true
options.compilerArgs.addAll(listOf("-Xlint:-deprecation", "-Xlint:-removal"))
} }
tasks.withType<Javadoc> { tasks.withType<Javadoc> {
options.encoding = Charsets.UTF_8.name() options.encoding = Charsets.UTF_8.name()