You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some of our Mojos have a POJO structure for some of the parameters. For instance, the spring-boot:build-image goal as an <image> property that contains sub-properties such as name and the like.
Maven does not allow to bind a property of a POJO from the command line. To workaround this issue, the only way we found was to declare the parameter again, but flag it read-only so that it doesn't show up in auto-completion.
Maven 4 now makes use of that read-only flag and outputs a warning. We need to figure out what to do to preserve the current behavior.
The text was updated successfully, but these errors were encountered:
See #43596
Some of our Mojos have a POJO structure for some of the parameters. For instance, the
spring-boot:build-image
goal as an<image>
property that contains sub-properties such asname
and the like.Maven does not allow to bind a property of a POJO from the command line. To workaround this issue, the only way we found was to declare the parameter again, but flag it read-only so that it doesn't show up in auto-completion.
Maven 4 now makes use of that read-only flag and outputs a warning. We need to figure out what to do to preserve the current behavior.
The text was updated successfully, but these errors were encountered: