Use UTF-8 encoding for docs and bump version to v0.18.0

This commit is contained in:
TobiGr 2019-12-26 22:46:19 +01:00
parent 01eb7a9658
commit f826c24749
1 changed files with 3 additions and 2 deletions

View File

@ -5,7 +5,7 @@ allprojects {
sourceCompatibility = 1.7 sourceCompatibility = 1.7
targetCompatibility = 1.7 targetCompatibility = 1.7
version 'v0.13.0' version 'v0.18.0'
group 'com.github.TeamNewPipe' group 'com.github.TeamNewPipe'
repositories { repositories {
@ -43,6 +43,7 @@ task aggregatedJavadocs(type: Javadoc, group: 'Documentation') {
title = "$project.name $version" title = "$project.name $version"
// options.memberLevel = JavadocMemberLevel.PRIVATE // options.memberLevel = JavadocMemberLevel.PRIVATE
options.links 'https://docs.oracle.com/javase/7/docs/api/' options.links 'https://docs.oracle.com/javase/7/docs/api/'
options.encoding 'UTF-8'
subprojects.each { project -> subprojects.each { project ->
project.tasks.withType(Javadoc).each { javadocTask -> project.tasks.withType(Javadoc).each { javadocTask ->