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 a3f8298 commit 68fa40fCopy full SHA for 68fa40f
objectbox-kotlin/build.gradle
@@ -23,6 +23,13 @@ apply plugin: 'org.jetbrains.dokka'
23
sourceCompatibility = JavaVersion.VERSION_1_8
24
targetCompatibility = JavaVersion.VERSION_1_8
25
26
+// Produce Java 8 byte code, would default to Java 6.
27
+tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).configureEach {
28
+ kotlinOptions {
29
+ jvmTarget = "1.8"
30
+ }
31
+}
32
+
33
dokka {
34
outputFormat = 'html'
35
outputDirectory = javadocDir
0 commit comments