io.freefair.javadoc-utf-8
Owner: Lars Grefer
Set the output encoding of your javadoc tasks to 'UTF-8'
https://docs.freefair.io/gradle-plugins/8.10.2/reference/
Sources: https://github.com/freefair/gradle-plugins
Version 5.0.0-rc4
5.0.0-rc4
Created 23 February 2020.
Set the output encoding of your javadoc tasks to 'UTF-8'
Using the plugins DSL:
plugins {
id("io.freefair.javadoc-utf-8") version "5.0.0-rc4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.freefair.gradle:maven-plugin:5.0.0-rc4")
}
}
apply(plugin = "io.freefair.javadoc-utf-8")
Using the plugins DSL:
plugins {
id "io.freefair.javadoc-utf-8" version "5.0.0-rc4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.freefair.gradle:maven-plugin:5.0.0-rc4"
}
}
apply plugin: "io.freefair.javadoc-utf-8"