Skip to content

Commit

Permalink
fix: Compile Java with parameters to support property binding in Maps
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Vitale <[email protected]>
  • Loading branch information
ThomasVitale committed Mar 24, 2024
1 parent f301323 commit f2abe77
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions buildSrc/src/main/groovy/java-conventions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ dependencyManagement {
}
}

tasks.withType(JavaCompile).configureEach {
options.compilerArgs.add("-parameters")
}

tasks.named('test') {
useJUnitPlatform()
}

0 comments on commit f2abe77

Please sign in to comment.