Skip to content

Commit a9df42f

Browse files
authored
set encoding to utf-8 in root build.gradle file
1 parent 5a2c3a2 commit a9df42f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

exercises/build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ subprojects {
2828
}
2929

3030
afterEvaluate { project ->
31+
// set default encoding to UTF-8
32+
compileJava.options.encoding = "UTF-8"
33+
compileTestJava.options.encoding = "UTF-8"
3134

3235
sourceSets {
3336
// Set the directory containing the reference solution as the default source set. Default

0 commit comments

Comments
 (0)