mirror of https://github.com/grpc/grpc-java.git
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:
parent
d4d66a5fef
commit
14444a91cf
|
|
@ -22,6 +22,8 @@ subprojects {
|
|||
options.encoding = "UTF-8"
|
||||
}
|
||||
|
||||
javadoc.options.encoding = "UTF-8"
|
||||
|
||||
ext {
|
||||
libraries = [
|
||||
guava: 'com.google.guava:guava:18.0',
|
||||
|
|
|
|||
Loading…
Reference in New Issue