Skip to content
This repository was archived by the owner on Oct 14, 2020. It is now read-only.

UTF8 Fix for Java #460

Merged
merged 1 commit into from
Jul 15, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions frameworks/java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,12 @@ dependencies {
compile 'org.springframework.boot:spring-boot-starter-validation:1.5.4.RELEASE'
}

compileJava.options.encoding = 'UTF-8'

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

test {
reports {
html.enabled = false
Expand Down