Skip to content

Commit

Permalink
Set Java 8 as a target Java version
Browse files Browse the repository at this point in the history
  • Loading branch information
armay committed Apr 11, 2021
1 parent fc41c08 commit 222e798
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion lib/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group = "com.github.armay"
version = "0.0.1"
version = "0.0.2-SNAPSHOT"

plugins {
val dokkaVersion = "1.4.30"
Expand Down Expand Up @@ -88,6 +88,12 @@ tasks {
dependsOn(dokkaHtml)
from(dokkaHtml)
}
compileJava {
options.release.set(8)
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
}

dependencies {
Expand Down

0 comments on commit 222e798

Please sign in to comment.