Skip to content

Commit d3557a4

Browse files
committed
TEMP attempt to avoid Windows-1252 errors
1 parent 104b3a9 commit d3557a4

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

build.gradle.kts

+5
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ plugins {
99
id("com.github.jk1.dependency-license-report") version "2.0"
1010
}
1111

12+
tasks.withType<JavaCompile> {
13+
// Avoids "Spinner.java:24: error: unmappable character (0x81) for encoding windows-1252" errors on Windows
14+
options.encoding = "UTF-8"
15+
}
16+
1217
extensions.findByName("buildScan")?.withGroovyBuilder {
1318
setProperty("termsOfServiceUrl", "https://gradle.com/terms-of-service")
1419
setProperty("termsOfServiceAgree", "yes")

0 commit comments

Comments
 (0)