Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@

<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<!-- Emit -parameters so formal parameter names survive into the bytecode. Spring relies on
them to resolve constructor/method injection by name (e.g. disambiguating two beans of
the same type by parameter name) and to bind @RequestParam/@PathVariable/@ConfigurationProperties
without an explicit name. Spring Boot's own parent enables this by default for the same reason. -->
<maven.compiler.parameters>true</maven.compiler.parameters>

<!-- Minimum build environment enforced by the maven-enforcer-plugin.
Child projects may override these to require a newer toolchain. -->
Expand Down