1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-06-17 00:44:50 +02:00

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

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 ->