Force JavaDoc to intepret code as UTF-8

We are already specifying to javac that our code is UTF-8, but we also
need to specify to JavaDoc, even though we don't have any non-ASCII
characters in JavaDoc comments.

Tested with LC_ALL=C
This commit is contained in:
Eric Anderson 2015-03-11 16:44:38 -07:00
parent d4d66a5fef
commit 14444a91cf
1 changed files with 2 additions and 0 deletions

View File

@ -22,6 +22,8 @@ subprojects {
options.encoding = "UTF-8"
}
javadoc.options.encoding = "UTF-8"
ext {
libraries = [
guava: 'com.google.guava:guava:18.0',