diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2018-09-18 16:24:15 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2018-09-19 10:51:43 +0200 |
commit | 92b3cb4a98fb8ecc6d1583fd35514805cab21fba (patch) | |
tree | aa0268da11a1522f0b4285ca68dfe9471932b1b4 /build.gradle | |
parent | 3f671cfcace8552a32b78a9e3327394d85f863ba (diff) | |
download | sonarqube-92b3cb4a98fb8ecc6d1583fd35514805cab21fba.tar.gz sonarqube-92b3cb4a98fb8ecc6d1583fd35514805cab21fba.zip |
Fix javadoc encoding
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle index f2a5dc8b6d4..257fe527f20 100644 --- a/build.gradle +++ b/build.gradle @@ -242,6 +242,7 @@ subprojects { tasks.withType(Javadoc) { options.addStringOption('Xdoclint:none', '-quiet') + options.encoding = 'UTF-8' } task sourcesJar(type: Jar, dependsOn: classes) { |