From b7ed86ee4e6455ff825679bdd42292a3748e2e59 Mon Sep 17 00:00:00 2001 From: Arnav495 Date: Thu, 7 Aug 2025 14:42:03 -0700 Subject: [PATCH] Force UTF-8 for compilation. --- build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/build.gradle b/build.gradle index f2e8c06..293f0ef 100644 --- a/build.gradle +++ b/build.gradle @@ -156,6 +156,7 @@ wpi.java.configureTestTasks(test) // Configure string concat to always inline compile tasks.withType(JavaCompile) { + options.encoding = 'UTF-8' // prevent breaks in CI options.compilerArgs.add '-XDstringConcat=inline' } -- 2.39.5