Toots du Jour (Oct 20)
<1 min read
Johnny Cage joins other fighters in the ultimate, no-holds-barred battle to defeat the dark rule of Shao Kahn, a powerful tyrant who threatens the very existence of the Earthrealm and its defenders.
I've released a new extension for bld to easily execute JBang commands and scripts:
@BuildCommand(summary = "Runs JBang script")
public void jbang() throws Exception {
new JBangOperation()
.fromProject(this)
.jBangArgs("--quiet")
.script("path/to/script.java")
.args("foo", "bar")
.execute();
}
Full access to the entire JBang ecosystem with a single extension!