Use UTF-8 as charSet for javadoc

This commit is contained in:
Florian Schmaus 2015-04-04 18:46:07 +02:00
parent 328da5a7e2
commit ee429b5d8b
1 changed files with 3 additions and 0 deletions

View File

@ -153,6 +153,9 @@ allprojects {
options.addStringOption('Xdoclint:all,-html,-syntax', '-quiet')
}
}
tasks.withType(Javadoc) {
options.charSet = "UTF-8"
}
}
gradle.taskGraph.whenReady { taskGraph ->