You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it would be convenient to reduce the scope of when to display the run adn debug jbang to reduce potential failure at runtime when the file is not a JBang one.
It will avoid to detect Camel files as Jbang ones for instance (which are using the //DEPS notation similar to JBang):
//DEPS org.apache.commons:commons-math3:3.6.1importorg.apache.camel.builder.RouteBuilder;
importorg.apache.commons.math3.util.ArithmeticUtils;
publicclassMyRouteBuilderWithAdditionalDependenciesextendsRouteBuilder{
publicvoidconfigure() {
from("timer:timerName")
.log("Hello with addition of 2 + 3 ="+ ArithmeticUtils.addAndCheck(2, 3));
}
}
The text was updated successfully, but these errors were encountered:
it would be convenient to reduce the scope of when to display the run adn debug jbang to reduce potential failure at runtime when the file is not a JBang one.
It will avoid to detect Camel files as Jbang ones for instance (which are using the //DEPS notation similar to JBang):
The text was updated successfully, but these errors were encountered: