Remko Popma

Results 381 comments of Remko Popma

I had not considered mixins nested in mixins, but I can see that it makes sense in your use case. Not sure how easy it will be to implement something...

Sorry for my late response. Can you provide a test to help me reproduce the issue?

@xehpuk It would help greatly if you could provide a test that reproduces the issue.

Thank you for raising this! 🙏 Will you be able to provide a pull request for this?

Thanks to PR https://github.com/remkop/picocli-native-image-demo/pull/5 this project now uses the recommended GraalVM native-build-tools Gradle plugin. If anyone feels like contributing a PR to let this project use the [GitHub Action for...

Thank you for raising this @reddaly! I am not sure I understand the issue from the information exception you provided. Can you provide a failing test, or otherwise more details...

Having a custom converter sounds like a perfect solution actually! đź‘Ť

If the `Path.of(URI.create(String))` invocation works with “normal” local files then perhaps I should change the default type converter for `Path` to use that invocation.

@reddaly It looks like it is not feasible to make the `Path.of(URI.create(String))` invocation the default for picocli's built-in `Path` type converter. For Windows local file paths, a common path like...

@prshnt I interpreted the suggested solution to be adding a `while (true) sleep(1000);` loop to make sure the main thread never dies.