dev.jbang.cli.VersionProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jbang-cli Show documentation
Show all versions of jbang-cli Show documentation
JBang Command Line Interface
The newest version!
package dev.jbang.cli;
import dev.jbang.util.Util;
import picocli.CommandLine;
public class VersionProvider implements CommandLine.IVersionProvider {
@Override
public String[] getVersion() throws Exception {
return new String[] { Util.getJBangVersion() };
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy