Skip to content

Commit

Permalink
add -parameters compile flag to avoid warnings
Browse files Browse the repository at this point in the history
Co-authored-by: Maximilian Ruenz <[email protected]>
Co-authored-by: Thimo Tollmien <[email protected]>
  • Loading branch information
ThimoTollmien1002 and Maximilian Ruenz committed Jul 10, 2023
1 parent 7a51082 commit eb4f2db
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Release Notes

# 0.30.2
* Add -parameters compile flag to avoid warnings

# 0.30.1
* Fix deprecation warnings for thymeleaf includes which started with spring boot 3.x.

Expand Down
6 changes: 6 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,12 @@ subprojects {

compileJava.dependsOn(processResources)

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

version = parent.version
group = parent.group

Expand Down

0 comments on commit eb4f2db

Please sign in to comment.