We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c39592 commit 192cc9cCopy full SHA for 192cc9c
1 file changed
build.gradle.kts
@@ -10,6 +10,8 @@ java {
10
toolchain {
11
languageVersion = JavaLanguageVersion.of(17)
12
}
13
+ withSourcesJar()
14
+ withJavadocJar()
15
16
17
repositories {
@@ -28,7 +30,13 @@ tasks.withType<JavaCompile> {
28
30
29
31
32
tasks.withType<Javadoc> {
33
+ isFailOnError = false
34
options.encoding = "UTF-8"
35
+ (options as StandardJavadocDocletOptions).apply {
36
+ addBooleanOption("Xdoclint:none", true)
37
+ addStringOption("encoding", "UTF-8")
38
+ addStringOption("charSet", "UTF-8")
39
+ }
40
41
42
tasks.withType<ProcessResources> {
0 commit comments