Skip to content

Commit

Permalink
Fix example
Browse files Browse the repository at this point in the history
  • Loading branch information
DRSchlaubi committed Dec 3, 2023
1 parent 5cffbef commit b3e5c4f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 5 additions & 1 deletion example/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ repositories {
}

kotlin {
jvmToolchain(20)
jvmToolchain(21)
jvm {
withJava()
}
Expand Down Expand Up @@ -59,4 +59,8 @@ tasks {
withType<JavaCompile> {
options.compilerArgs.add("--enable-preview")
}

withType<JavaExec> {
args!!.add("--enable-preview")
}
}
2 changes: 2 additions & 0 deletions example/src/jvmMain/resources/simplelogger.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
org.slf4j.simpleLogger.defaultLogLevel=trace
org.slf4j.simpleLogger.showDateTime=true

0 comments on commit b3e5c4f

Please sign in to comment.