jbang icon indicating copy to clipboard operation
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.

Results 271 jbang issues
Sort by recently updated
recently updated
newest added
trafficstars

If you are using a wrapper jbang in your project and replace with a new version, jbang still using the old version. Even running `./jbang cache clear --all` it doesn'work....

Hello, I have been investigating the feasibility of using JBang to propose an alternative solution for running java code snippets for our projects. If successful, it would be possible to...

I want to be able to run a Quarkus application from either an IDE or JBang. For example, this is runnable from an IDE, taking in my `args` into consideration,...

Having the following source `Main.java` using multiple source files: ``` ///usr/bin/env jbang "$0" "$@" ; exit $? //SOURCES **/*.java public class Main { public static void main(String... args) { new...

Hi, Is it possible to have a directory, instead of a single file, in the `//SOURCES` directive, and see it also in the IDE?

Currently every dependency which is declared using `//DEPS` is part of the compile classpath. In some cases it might be beneficial to declare dependencies as "runtime only". A JDBC driver...

I am using JBang 0.78.0 and followed the [Using links to Git sources](https://www.jbang.dev/documentation/guide/latest/dependencies.html#using-links-to-git-sources) guide to use [a dependency from my GitHub repository](https://github.com/gastaldi/quarkus-registry-generator), like in the following: ```java ///usr/bin/env jbang "$0"...

We may need some options to pass to native_image, for example `-H:+AllowIncompleteClasspath`. I have the case for [](https://github.com/grumpyf0x48/jbang-catalog/blob/master/WhatsNewInJava.java) which fails to build in native because of that. It can be...

would be nice I could just do `jbang jdk java-env myapp.java` and not need to figure out which java version myapp.java needs :)

## Describe the bug have a jbang app with //JAVA 15 in source file using quarkus and then have default java be java 11 then quarkus complains about classes compiled...