We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0304f2 commit 7a4b992Copy full SHA for 7a4b992
build.gradle.kts
@@ -7,9 +7,17 @@ plugins {
7
group = "org.gradlex"
8
version = "1.6.3"
9
10
-java {
11
- sourceCompatibility = JavaVersion.VERSION_1_8
12
- targetCompatibility = JavaVersion.VERSION_1_8
+tasks.withType<JavaCompile>().configureEach {
+ options.release = 8
+}
13
+
14
+tasks.withType<Javadoc>().configureEach {
15
+ options {
16
+ this as StandardJavadocDocletOptions
17
+ encoding = "UTF-8"
18
+ addStringOption("Xdoclint:all,-missing", "-quiet")
19
+ addStringOption("Xwerror", "-quiet")
20
+ }
21
}
22
23
configurations.compileClasspath {
0 commit comments