0.62.0 (2021/01/17)
I'm extremely happy to say that with this release jbang now support bom poms allowing you to do things like:
//DEPS io.quarkus:quarkus-bom:1.11.0.Final@pom
//DEPS io.quarkus:quarkus-resteasy
//DEPS io.quarkus:quarkus-smallrye-openapi
//DEPS io.quarkus:quarkus-swagger-ui
or
//DEPS com.microsoft.azure:azure-bom:1.0.0.M1@pom
//DEPS com.microsoft.azure:azure
Notice how first line are importing boms with @pom classifier. When jbang see these it will load that bom pom ` section to use as fallback when when resolving version less artifacts.
This removes a lot of redundancy and replaces it with just one line for the BOM POM.
Finally also added run/test/ visual code extension to the default vscodium install using jbang edit --open myapp.java`
Bug Fixes
- include vscode-java-test of vscodium install to get run/test features [minor] (#a025d73c)