Skip to content

Commit

Permalink
Generate JVM default methods for procedural interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
JoelCourtney committed Oct 10, 2024
1 parent aff0fba commit 18c4cce
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions procedural/constraints/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ tasks.named('test') {

kotlin {
jvmToolchain(21)
compilerOptions {
freeCompilerArgs.add("-Xjvm-default=all")
}
}

java {
Expand Down
3 changes: 3 additions & 0 deletions procedural/scheduling/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ tasks.named('test') {

kotlin {
jvmToolchain(21)
compilerOptions {
freeCompilerArgs.add("-Xjvm-default=all")
}
}

java {
Expand Down
3 changes: 3 additions & 0 deletions procedural/timeline/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ tasks.named('test') {

kotlin {
jvmToolchain(21)
compilerOptions {
freeCompilerArgs.add("-Xjvm-default=all")
}
}

java {
Expand Down

0 comments on commit 18c4cce

Please sign in to comment.