Skip to content

Commit

Permalink
Add Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Foso committed Oct 16, 2024
1 parent 7f47442 commit da729be
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
kotlin("js") version "1.8.0"
}
Expand Down Expand Up @@ -27,6 +29,16 @@ kotlin {
}


java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(8))
}
}

tasks.withType<KotlinCompile> {
kotlinOptions.jvmTarget = "1.8"
}


tasks{
register("buildUserScript") {
Expand Down

0 comments on commit da729be

Please sign in to comment.