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