From 729a05066211fb2a3f203f06804514be39882eba Mon Sep 17 00:00:00 2001 From: Wouter Gritter Date: Sat, 11 Jul 2026 22:08:55 +0200 Subject: [PATCH] Fix build-time GraalVmProcessor warning (#1801) --- proxy/build.gradle.kts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/proxy/build.gradle.kts b/proxy/build.gradle.kts index e6d48392..c1864e34 100644 --- a/proxy/build.gradle.kts +++ b/proxy/build.gradle.kts @@ -112,6 +112,15 @@ tasks { workingDir = file("run").also(File::mkdirs) standardInput = System.`in` // Doesn't work? } + + withType().configureEach { + options.compilerArgs.addAll( + listOf( + "-Alog4j.graalvm.groupId=${project.group}", + "-Alog4j.graalvm.artifactId=${project.name}" + ) + ) + } } val projectVersion = version as String