Skip to content

Commit

Permalink
[BUG] Compile with UTF-8 Support. Should fix issues with non-english …
Browse files Browse the repository at this point in the history
…characters in messages
  • Loading branch information
hypherionmc committed Feb 25, 2023
1 parent 43b54d3 commit 1400231
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,10 @@ publishing {
}
}

tasks.withType(JavaCompile).configureEach {
it.options.encoding = 'UTF-8'
}

spotless {
java {
licenseHeaderFile(rootProject.file("HEADER")).yearSeparator("-")
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version_major=3
version_minor=0
version_patch=10
version_patch=11

# Dependencies
log4j_ver=2.17.2
Expand Down

0 comments on commit 1400231

Please sign in to comment.