Tako Schotanus
Tako Schotanus
Right now if you enable Class Data Sharing (using `-XX:ArchiveClassesAtExit`) for an application that uses Picocli you get a long list of warnings like this: ``` [0.518s][warning][cds] Pre JDK 6...
We have this in our toplevel command: ```java @CommandLine.ArgGroup(exclusive = true) Exclusive exclusive = new Exclusive(); static class Exclusive { @Option(names = { "--verbose" }, scope = ScopeType.INHERIT) void setVerbose(boolean...
Is basically a file that only supports //-lines, no source. You add the source by using a //SOURCES line.
We're still using v2 and it seems the DIsco maintainers would prefer people to use v3.0. See https://github.com/foojayio/discoapi
We have a `--java-options` but no `--javac-options`. Nor do we have a way to pass options to the `native-image` compiler. We should probably make that possible. I would suggest to...
See https://github.com/jbangdev/jbang/issues/1385#issuecomment-1166705563 `java_home` on Mac actually has the possibility to list all installed JDKs and give the path to selected versions. It might be very useful to be able to...
Fixes #1293
If you use `jbang edit` on Windows and you have IntelliJ's `idea` on your path and you tell JBang that you want to use it then nothing happens. This is...
Rebased against main to see if we can reproduce what went wrong.
Right now when you do `curl sh.jbang.dev | bash -s -` you're basically performing a regular installation, the only difference being that no changes are being made to your environment...