From aaaeb4e1e6477b0a6d586f70e739218ab68f59ec Mon Sep 17 00:00:00 2001 From: Nassim Jahnke Date: Mon, 17 Mar 2025 10:53:56 +0100 Subject: [PATCH] [ci skip] Make compilation logs actually readable (#12276) * [ci skip] Make compilation logs actually readable * Specifically disable deprecation and removal warnings instead --- build.gradle.kts | 1 + 1 file changed, 1 insertion(+) diff --git a/build.gradle.kts b/build.gradle.kts index 9c20ed02f..fad7f3925 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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 { options.encoding = Charsets.UTF_8.name()