Skip to content

Commit 0110474

Browse files
authored
Fix encoding issues with intellij (#1022)
Forces java encoding to UTF-8.
1 parent 59673da commit 0110474

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

build.gradle

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,4 +86,12 @@ subprojects {
8686
test {
8787
useJUnitPlatform()
8888
}
89+
90+
compileJava {
91+
options.encoding = "UTF-8"
92+
}
93+
94+
compileTestJava {
95+
options.encoding = "UTF-8"
96+
}
8997
}

0 commit comments

Comments
 (0)