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.
2 parents aca82e4 + c2ce5ae commit 481b83dCopy full SHA for 481b83d
build.gradle.kts
@@ -1,4 +1,5 @@
1
import de.marcphilipp.gradle.nexus.NexusRepository
2
+import org.gradle.api.JavaVersion.VERSION_1_8
3
import org.jetbrains.dokka.gradle.DokkaTask
4
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
5
@@ -48,6 +49,11 @@ tasks.named<KotlinCompile>("compileTestKotlin") {
48
49
}
50
51
52
+java {
53
+ sourceCompatibility = VERSION_1_8
54
+ targetCompatibility = VERSION_1_8
55
+}
56
+
57
val sourcesJar by tasks.creating(Jar::class) {
58
group = "build"
59
description = "Assembles the source code into a jar"
0 commit comments