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
The code changes for supporting @ArgGroup repeating argument groups have broken some assumptions that were not covered in tests for ReflectionConfigGenerator.
As a result, the generated config JSON contained a block for picocli.CommandLine$Model$ObjectScope with @Option and @Parameters-annotated methods of the annotated user object. This causes a runtime error when executing the native image since those methods do not exist on the ObjectScope class.
The ReflectionConfigGenerator should not generate a block at all for picocli.CommandLine$Model$ObjectScope: this class is not accessed reflectively.