jbang
jbang copied to clipboard
Unleash the power of Java - JBang Lets Students, Educators and Professional Developers create, edit and run self-contained source-only Java programs with unprecedented ease.
JBang scripts referencing remote scripts via //DEPS (since v0.109.0), can not work in the IDE until the first jbang build, as `jbang info tools` do not actually build those resolved...
Just read this in a mail I received about changes in JDK 22: ## Heads-up - JDK 22: JLine is now the Default Console Provider In JDK 22, `System.console()` has...
Why: * jbang-action is hardcoded to use a specific java version requiring users to download new java version * nicer if can have a docker images that has the java...
When I run `sdk list` and browse a bit then I see the link to jbang is from earlier days from Max. ``` $ sdk install jbake -------------------------------------------------------------------------------- JBang (0.109.0)...
Needs #1630 to be applied first
**Is your feature request related to a problem? Please describe.** When a specific version of Java is required for a script, the JDK installed by sdkman should be looked **Describe...
its a bit verbose so probably not worth adding on everything but if one do this: ``` //usr/bin/env echo ' /**** BOOTSTRAP jbang ****\'>/dev/null command -v jbang >/dev/null 2>&1 ||...
this is `jbang init -t cli test.java` with `//MODULE` and package added: ``` ///usr/bin/env jbang "$0" "$@" ; exit $? //DEPS info.picocli:picocli:4.6.3 //JAVA 17+ //MODULE package mypackage; import picocli.CommandLine; import...
The command that gets run is `sh -c code `, so the `.` seems to be missing.
This PR allows JREs to be used by Jbang. This should make it possible to use much of Jbang's functionality without having a JDK installed. Except for the most important...